gearlib-rw/examples/simple-init.c

14 lines
239 B
C
Raw Normal View History

2024-08-11 16:18:06 +12:00
#include <gearlib.h>
int main() {
gr_state_init();
2024-08-12 07:41:57 +12:00
gr_log_add_file("log.txt");
2024-08-11 16:18:06 +12:00
gr_window_init(4, 1);
2024-08-12 07:41:57 +12:00
gr_window_create(1920, 1080, "hi");
while(!gr_window_should_close()) {
2024-08-12 08:27:58 +12:00
gr_window_clear(26, 26, 26);
2024-08-12 07:41:57 +12:00
}
2024-08-11 16:18:06 +12:00
}
2024-08-12 07:41:57 +12:00