From 6d9bea3e71137a94ba64fd0b5661d341304b2dc1 Mon Sep 17 00:00:00 2001 From: Jonathan Bradley Date: Tue, 28 Nov 2023 14:42:02 -0500 Subject: refactor core game loop out of main.cpp and into game.cpp --- src/window-types.hpp | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/window-types.hpp (limited to 'src/window-types.hpp') 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 */ -- cgit v1.2.3