1v13d/src/main.c

18 lines
329 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);
while (1)
{
FE_new_frame();
dtext(1, 1, FE_fps_get_history(), C_BLACK, C_NONE);
}
2019-07-19 21:55:17 +02:00
getkey();
return 1;
2019-07-22 13:55:24 +02:00
}