diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2023-07-20 17:02:05 +0200 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2023-07-20 17:02:05 +0200 |
commit | fac9e8bec1983fa9dff8f447fef106e427dfec26 (patch) | |
tree | 2221d4216873fa8250dd5ff45f00d0d6b46eab26 /c++/window/video_mode.h | |
parent | 398164432abcf599eaa51ebc4088024b7f46b97f (diff) |
c++: Renamed src to c++
Diffstat (limited to 'c++/window/video_mode.h')
-rw-r--r-- | c++/window/video_mode.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/c++/window/video_mode.h b/c++/window/video_mode.h new file mode 100644 index 0000000..a8f1695 --- /dev/null +++ b/c++/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 |