#include <IApplicationState.h>
Inheritance diagram for peon::IApplicationState:
Public Member Functions | |
IApplicationState () | |
Constructor. | |
virtual | ~IApplicationState () |
Destructor. | |
virtual bool | onLoad ()=0 |
This method is launched when we want to load up and create everything within this state. | |
virtual void | onUnload ()=0 |
This method is launched when its time to cleanup and free any allocated memory for this state. | |
virtual void | onUpdate (float fElapsedTime)=0 |
This method is launched when the engine signals the chance to update this state. | |
virtual void | onRender () |
This method is responsible for processing any rendering commands for this state. |
|
This method is launched when we want to load up and create everything within this state.
|
|
This method is launched when the engine signals the chance to update this state.
|