summaryrefslogtreecommitdiff
path: root/src/window-types.hpp
diff options
context:
space:
mode:
authorJonathan Bradley <jcb@pikum.xyz>2023-11-28 14:42:02 -0500
committerJonathan Bradley <jcb@pikum.xyz>2023-11-28 14:42:02 -0500
commit6d9bea3e71137a94ba64fd0b5661d341304b2dc1 (patch)
treee7b67115a7b5cb6358dc961e63d5e16be20cd99d /src/window-types.hpp
parent662e13106e2f726e47d09dc66c01d9449eceb623 (diff)
refactor core game loop out of main.cpp and into game.cpp
Diffstat (limited to 'src/window-types.hpp')
-rw-r--r--src/window-types.hpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/window-types.hpp b/src/window-types.hpp
new file mode 100644
index 0000000..3b6a19d
--- /dev/null
+++ b/src/window-types.hpp
@@ -0,0 +1,9 @@
+#ifndef PKE_WINDOW_TYPES_HPP
+#define PKE_WINDOW_TYPES_HPP
+
+struct PKEWindowProperties {
+ unsigned int width = 1280;
+ unsigned int height = 720;
+};
+
+#endif /* PKE_WINDOW_TYPES_HPP */