summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
index 974ac09..be8671d 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1,6 +1,11 @@
+#include <init.h>
+#include <game.h>
#include <stdlib.h>
int main(void)
{
+ if (system_init() || game())
+ return EXIT_FAILURE;
+
return 0;
}