13 lines
239 B
C
13 lines
239 B
C
#include <gearlib.h>
|
|
|
|
int main() {
|
|
gr_state_init();
|
|
gr_log_add_file("log.txt");
|
|
gr_window_init(4, 1);
|
|
gr_window_create(1920, 1080, "hi");
|
|
|
|
while(!gr_window_should_close()) {
|
|
gr_window_clear(26, 26, 26);
|
|
}
|
|
}
|
|
|