class Transition
Abstract class that implements the skeleton of a transition.
Transition | Abstract class that implements the skeleton of a transition. |
Functions | |
Transition | Unused constructor of abstract class. |
~Transition | Virtual. |
GetType | Returns the type indicator of the class. |
GetResultChart | Returns the resulting chart of the transition. |
AddTransition | Adds the transition as child transition. |
Start | Starts the transition and makes it processable. |
Update | Virtual. |
Complete | Virtual. |
Abstract class that implements the skeleton of a transition.
class Transition
Unused constructor of abstract class.
Transition()
Virtual.
virtual ~Transition()
Returns the type indicator of the class.
int GetType()
Returns the resulting chart of the transition.
Chart* GetResultChart()
Adds the transition as child transition.
void AddTransition( Transition * pTransition )
Starts the transition and makes it processable.
void Start()
Virtual.
virtual void Update() = 0
Virtual.
virtual bool Complete() = 0