|
| void | update () |
| | Updates core module functionality.
|
| |
| void | init (int width, int height, int scale=1) |
| | Initializes the core module.
|
| |
| void | init_opengl (int width, int height, int scale=1) |
| | Initializes the core module for opengl.
|
| |
| void | print_info () |
| | Prints information about the core module.
|
| |
| void | exit () |
| | Exit the application. Sets exiting flag to true, which will cause the main loop to exit on the next update.
|
| |
| bool | is_exiting () |
| | Return exiting status.
|
| |
| void | shutdown () |
| | Cleanup resources used by the core module. Should be called on application exit.
|
| |