summaryrefslogtreecommitdiff
path: root/src/core/core.h
diff options
context:
space:
mode:
authoromnisci3nce <omniscient.oce@gmail.com>2024-07-14 21:47:25 +1000
committeromnisci3nce <omniscient.oce@gmail.com>2024-07-14 21:47:25 +1000
commit529a603128d5e9dc4701322f44961f165e2183e1 (patch)
tree3e5d65ac503b971412ae35bfc5fb67a438a3c364 /src/core/core.h
parent5b001d39d42314085164724d3a417fb8ebd54f98 (diff)
generate api docs python
Diffstat (limited to 'src/core/core.h')
-rw-r--r--src/core/core.h4
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();