diff options
author | Claudius Holeksa <mail@keldu.de> | 2023-05-22 00:37:33 +0200 |
---|---|---|
committer | Claudius Holeksa <mail@keldu.de> | 2023-05-22 00:37:33 +0200 |
commit | 7f0440cc25fc3ebc711df9fb708a5bffe53bf784 (patch) | |
tree | 8de4c18388b258f7af3b268b534723da48ce1616 /src/window/video_mode.h | |
parent | a93b825968d6da81200bbda00ece1371f0f7945e (diff) |
c++: Initial setup for regular window creation
Diffstat (limited to 'src/window/video_mode.h')
-rw-r--r-- | src/window/video_mode.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/window/video_mode.h b/src/window/video_mode.h new file mode 100644 index 0000000..a8f1695 --- /dev/null +++ b/src/window/video_mode.h @@ -0,0 +1,11 @@ +#pragma once + +#include <cstddef> + +namespace saw { +class video_mode { +public: + size_t width = 64; + size_t height = 64; +}; +} // namespace saw |