13 lines
132 B
C
13 lines
132 B
C
#include "main.h"
|
|
|
|
s32
|
|
main(s32 argc, char** argv)
|
|
{
|
|
game_init(&game);
|
|
|
|
while (true)
|
|
game_loop(&game);
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|