diff options
Diffstat (limited to 'src/core/core.h')
-rw-r--r-- | src/core/core.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/core.h b/src/core/core.h index 7916143..78dcd14 100644 --- a/src/core/core.h +++ b/src/core/core.h @@ -9,6 +9,8 @@ typedef struct Core Core; +struct Renderer; + Core* get_global_core(); /** @brief Throws error if the core cannot be instantiated */ @@ -16,6 +18,8 @@ void Core_Bringup(); void Core_Shutdown(); bool ShouldExit(); +struct Renderer* Core_GetRenderer(Core* core); + void Frame_Begin(); void Frame_Draw(); void Frame_End(); |