File size: 604 Bytes
24b81cb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
/*!
Base script class for helicopters.
*/
class HelicopterScript extends HelicopterAuto
{
void HelicopterScript()
{
SetEventMask(EntityEvent.POSTSIMULATE);
}
override void EOnPostSimulate(IEntity other, float timeSlice)
{
}
/*!
Gets called everytime the game wants to start the engine.
This callback is called on server only.
\return true if the engine can start, false otherwise.
*/
bool OnBeforeEngineStart()
{
return true;
}
//! Gets called everytime the engine starts.
void OnEngineStart()
{
}
//! Gets called everytime the engine stops.
void OnEngineStop()
{
}
};
|