Touhou/src/main.c

19 lines
189 B
C
Raw Normal View History

#include <gint/display.h>
#include <gint/keyboard.h>
#include <libprof.h>
2020-10-24 10:54:54 +02:00
#include "config.h"
#include "engine.h"
int main(void)
2020-10-24 10:54:54 +02:00
{
prof_init();
2020-10-24 10:54:54 +02:00
engine();
prof_quit();
return 1;
}