diff options
author | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-10-05 12:43:38 +1000 |
---|---|---|
committer | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-10-05 12:43:38 +1000 |
commit | 54354e32c6498cc7f8839ab4deb1208d37216cc5 (patch) | |
tree | 7759597b971ba59d6af841a5bed793c229dd4c2b /new_src/core.c | |
parent | be8ab99b38c25e899008582d68e891150b328a4d (diff) |
Begin simplifying project structure and removing examples
Diffstat (limited to 'new_src/core.c')
-rw-r--r-- | new_src/core.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/new_src/core.c b/new_src/core.c new file mode 100644 index 0000000..88979bb --- /dev/null +++ b/new_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() {} |