ODE/src/main.c

15 lines
194 B
C
Raw Normal View History

2021-08-17 22:14:09 +02:00
/*
Name : Odyssée Game Engine
Version : dev
code provided with licence :
GNU General Public Licence v3.0
*/
#include "game_engine.h"
2021-08-16 23:32:59 +02:00
int main(void)
{
2022-04-07 20:29:50 +02:00
mainloop();
2021-08-17 22:14:09 +02:00
return 0;
}