diff options
Diffstat (limited to 'src/core.c')
-rw-r--r-- | src/core.c | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -2,10 +2,14 @@ #include <celeritas.h> -void Core_Bringup(const char* window_name) { +NAMESPACED_LOGGER(core); + +void Core_Bringup(const char* window_name, struct GLFWwindow* optional_window) { // INFO("Initiate Core bringup"); - printf("Initiate core bringup\n"); + INFO("Initiate Core bringup"); - printf("Create GLFW window\n"); + INFO("Create GLFW window"); } void Core_Shutdown() {} + +bool AppShouldExit() { return true; } |