1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
// The engine "core" #include <celeritas.h> NAMESPACED_LOGGER(core); 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() {} bool app_should_exit() { return false; }