Arkanoid Remake
1.0
|
Application interface definition. More...
#include <App.h>
Public Member Functions | |
App () | |
Constructor. | |
virtual bool | Init () |
Initialization (the first method to call) | |
virtual void | Start () |
Start the application (the second method to call) | |
virtual void | Update () |
Update the application (call it in an iteration loop) | |
virtual void | Stop () |
Stop the application. | |
virtual void | CleanUp () |
Clean up the application and free memory. | |
bool | Run () |
Run the application. More... | |
Protected Attributes | |
bool | mQuit |
Flag used in the Run() method while calling Update() in a loop. | |
Application interface definition.
bool App::Run | ( | ) |