home *** CD-ROM | disk | FTP | other *** search
/ Game Level Design / GLDesign.bin / Software / UnrealEngine2Runtime / UE2Runtime-22262001_Demo.exe / Engine / Classes / VehiclePart.uc < prev    next >
Text File  |  2003-06-23  |  295b  |  15 lines

  1. class VehiclePart extends Actor
  2.     native
  3.     abstract
  4.     placeable;
  5.  
  6. var bool bUpdating;        // set true if currently updating
  7.  
  8. // Update() called each tick by the Vehicle which owns this vehiclepart
  9. function Update(float DeltaTime);
  10.  
  11. function Activate(bool bActive);
  12.  
  13. defaultproperties
  14. {
  15. }