1v13d/src/main.c

17 lines
272 B
C
Raw Normal View History

2019-07-19 21:55:17 +02:00
#include <gint/display.h>
#include <gint/keyboard.h>
2019-07-21 20:14:54 +02:00
#include <gint/std/stdio.h>
2019-07-21 21:27:02 +02:00
#include <gint/clock.h>
2019-07-21 20:14:54 +02:00
#include "FxEngine/FxEngine.h"
2019-07-20 16:03:28 +02:00
2019-07-19 21:55:17 +02:00
int main(void)
{
dclear(C_WHITE);
dtext(1, 1, "patience !", C_BLACK, C_NONE);
2019-07-21 20:14:54 +02:00
char fps_ch[10];
2019-07-22 13:55:24 +02:00
2019-07-19 21:55:17 +02:00
dupdate();
getkey();
return 1;
2019-07-22 13:55:24 +02:00
}