67 virtual bool Init() {
return false; }
bool mQuit
Flag used in the Run() method while calling Update() in a loop.
Definition: App.h:60
virtual void Stop()
Stop the application.
Definition: App.h:76
virtual void CleanUp()
Clean up the application and free memory.
Definition: App.h:79
virtual bool Init()
Initialization (the first method to call)
Definition: App.h:67
virtual void Update()
Update the application (call it in an iteration loop)
Definition: App.h:73
bool Run()
Run the application.
virtual void Start()
Start the application (the second method to call)
Definition: App.h:70
Application interface definition.
Definition: App.h:56