summaryrefslogtreecommitdiff
path: root/src/core.c
diff options
context:
space:
mode:
authoromniscient <17525998+omnisci3nce@users.noreply.github.com>2024-10-17 15:54:22 +1100
committeromniscient <17525998+omnisci3nce@users.noreply.github.com>2024-10-17 15:54:22 +1100
commit16afbddeada7161e931dc261d3404bb5bbc1743d (patch)
treee75db4d668c6a9ebfd07e4dd4d1fdabb66a95896 /src/core.c
parentff96a533014174d0857872f86f1536a06089f3d2 (diff)
add .m on mac. log INFO and module name
Diffstat (limited to 'src/core.c')
-rw-r--r--src/core.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core.c b/src/core.c
index 79b9d6e..0c3c5ea 100644
--- a/src/core.c
+++ b/src/core.c
@@ -4,12 +4,12 @@
NAMESPACED_LOGGER(core);
-void Core_Bringup(const char* window_name, struct GLFWwindow* optional_window) {
+void core_bringup(const char* window_name, struct GLFWwindow* optional_window) {
// INFO("Initiate Core bringup");
INFO("Initiate Core bringup");
INFO("Create GLFW window");
}
-void Core_Shutdown() {}
+void core_shutdown() {}
-bool AppShouldExit() { return true; }
+bool app_should_exit() { return false; }