aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/game.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/crepe/api/game.h')
-rw-r--r--src/crepe/api/game.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/crepe/api/game.h b/src/crepe/api/game.h
new file mode 100644
index 0000000..64027fa
--- /dev/null
+++ b/src/crepe/api/game.h
@@ -0,0 +1,17 @@
+#pragma once
+
+
+
+class Engine{
+
+public:
+ Engine(int windowWith, int windowHeight);
+ ~Engine() = default;
+
+ void loop();
+
+
+private:
+ int window_height;
+ int window_width;
+};