diff options
| author | Jonathan Bradley <jcb@pikum.xyz> | 2023-11-28 14:42:02 -0500 |
|---|---|---|
| committer | Jonathan Bradley <jcb@pikum.xyz> | 2023-11-28 14:42:02 -0500 |
| commit | 6d9bea3e71137a94ba64fd0b5661d341304b2dc1 (patch) | |
| tree | e7b67115a7b5cb6358dc961e63d5e16be20cd99d /src/window-types.hpp | |
| parent | 662e13106e2f726e47d09dc66c01d9449eceb623 (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.hpp | 9 |
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 */ |
