diff options
Diffstat (limited to 'src/core/core.h')
-rw-r--r-- | src/core/core.h | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/src/core/core.h b/src/core/core.h index 469f8d1..7916143 100644 --- a/src/core/core.h +++ b/src/core/core.h @@ -9,18 +9,13 @@ typedef struct Core Core; - -core* get_global_core(); - -// --- Lifecycle +Core* get_global_core(); /** @brief Throws error if the core cannot be instantiated */ -void core_bringup(); -void core_shutdown(); -bool should_exit(); - -void frame_begin(); -void frame_draw(); -void frame_end(); +void Core_Bringup(); +void Core_Shutdown(); +bool ShouldExit(); -void core_input_update(); +void Frame_Begin(); +void Frame_Draw(); +void Frame_End(); |