summaryrefslogtreecommitdiff
path: root/src/core.c
blob: 79b9d6e854d40a54c31fccef59f9f79448d64932 (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 true; }