CX/src/main.c

19 lines
239 B
C
Raw Normal View History

// Include standard headers
#include <stdio.h>
#include <stdlib.h>
// Include project headers
#include <cx.h>
int
main(void) {
GLFWwindow *window;
if (cx_glinit(&window)) {
return -1;
}
return cx_glrun(window);
}