15 lines
295 B
Ucode
15 lines
295 B
Ucode
class VehiclePart extends Actor
|
|
native
|
|
abstract
|
|
placeable;
|
|
|
|
var bool bUpdating; // set true if currently updating
|
|
|
|
// Update() called each tick by the Vehicle which owns this vehiclepart
|
|
function Update(float DeltaTime);
|
|
|
|
function Activate(bool bActive);
|
|
|
|
defaultproperties
|
|
{
|
|
} |