summaryrefslogtreecommitdiff
path: root/src/core.c
blob: 158615c6f6840b61376764e3a4da9536ea2703db (plain)
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 AppShouldExit() { return false; }