summaryrefslogtreecommitdiff
path: root/src/main/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/main.c')
-rw-r--r--src/main/main.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/main/main.c b/src/main/main.c
index 59c76b6..5ac3698 100644
--- a/src/main/main.c
+++ b/src/main/main.c
@@ -19,9 +19,13 @@
#include <stdio.h>
#include "ui/ui.h"
+#include "engine/engine.h"
+
+#define WIDTH 640
+#define HEIGHT 480
int main(void) {
- ui_init(640, 640);
+ engine_init(WIDTH, HEIGHT);
ui_set_title("Tris Game");
return EXIT_SUCCESS;