CX/src/main.c
2024-07-06 18:00:43 +02:00

20 lines
279 B
C

// 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;
}
int retval;
retval = cx_glrun(window);
return retval;
}