diff options
Diffstat (limited to 'main/floormat.hpp')
| -rw-r--r-- | main/floormat.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/main/floormat.hpp b/main/floormat.hpp index ce9e1b38..032c7865 100644 --- a/main/floormat.hpp +++ b/main/floormat.hpp @@ -9,8 +9,10 @@ enum class fm_gpu_debug : char { no_error = -1, on, robust, off }; enum class fm_tristate : char { maybe = -1, on, off }; enum class fm_log_level : unsigned char { quiet, normal, verbose, }; -struct fm_options final +struct fm_settings { + virtual ~fm_settings() noexcept; + Magnum::Math::Vector2<int> resolution{1024, 768}; Corrade::Containers::String title{"Test"}; Corrade::Containers::String disabled_extensions; // TODO |
