Evil_Monochrome/src/main.c

14 lines
178 B
C
Raw Normal View History

2020-03-16 22:04:55 +01:00
#include <gint/display.h>
#include <gint/keyboard.h>
int main(void)
{
extern image_t img_grid;
dclear(C_WHITE);
dimage(0, 0, &img_grid);
dupdate();
getkey();
return 1;
}