19 lines
239 B
C
19 lines
239 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;
|
||
|
}
|
||
|
|
||
|
return cx_glrun(window);
|
||
|
}
|