diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2024-01-18 12:05:13 +0100 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2024-01-18 12:05:13 +0100 |
commit | fec96c85a4d71f20d3de9791163a9a1f932c8e48 (patch) | |
tree | 4ed269f4e0079e3f21f83ea3f8cd8aebbf60ebe0 /modules/window/c++/video_mode.h | |
parent | 9022768d0d9a869d90767c079ce7d76a07e2f5ff (diff) |
window: Moving around directories
Diffstat (limited to 'modules/window/c++/video_mode.h')
-rw-r--r-- | modules/window/c++/video_mode.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/modules/window/c++/video_mode.h b/modules/window/c++/video_mode.h new file mode 100644 index 0000000..a8f1695 --- /dev/null +++ b/modules/window/c++/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 |