aboutsummaryrefslogtreecommitdiffstats
path: root/src/window.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/window.hpp')
-rw-r--r--src/window.hpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/window.hpp b/src/window.hpp
new file mode 100644
index 0000000..82abd2a
--- /dev/null
+++ b/src/window.hpp
@@ -0,0 +1,15 @@
+#ifndef WINDOW_H_
+#define WINDOW_H_
+
+#include "raylib.h"
+
+int initWindow(void);
+
+#define SCREENWIDTH 800
+#define SCREENHEIGHT 450
+
+typedef enum gameState {
+TITLE = 0, GAMEPLAY, ENDING
+} gameState ;
+
+#endif // WINDOW_H_