diff options
author | Omniscient <omniscient.oce@gmail.com> | 2024-10-05 13:55:05 +1000 |
---|---|---|
committer | Omniscient <omniscient.oce@gmail.com> | 2024-10-05 13:55:05 +1000 |
commit | 2c1a7d7f293c26d631e15cf4cbec542ac50994aa (patch) | |
tree | 5180c14d347717779db1583f3432a094e082cb84 /src/core.c | |
parent | 034028807665e84f7c62de5901a3d82c8b5e880e (diff) |
rename source folnder
Diffstat (limited to 'src/core.c')
-rw-r--r-- | src/core.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/core.c b/src/core.c new file mode 100644 index 0000000..88979bb --- /dev/null +++ b/src/core.c @@ -0,0 +1,11 @@ +// The engine "core" + +#include <celeritas.h> + +void Core_Bringup(const char* window_name) { + // INFO("Initiate Core bringup"); + printf("Initiate core bringup\n"); + + printf("Create GLFW window\n"); +} +void Core_Shutdown() {} |