diff options
Diffstat (limited to 'loader/ground-info.hpp')
-rw-r--r-- | loader/ground-info.hpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/loader/ground-info.hpp b/loader/ground-info.hpp new file mode 100644 index 00000000..3b96428e --- /dev/null +++ b/loader/ground-info.hpp @@ -0,0 +1,19 @@ +#pragma once +#include "src/pass-mode.hpp" +#include <memory> +#include <Corrade/Containers/String.h> +#include <Magnum/Math/Vector2.h> + +namespace floormat { + +class ground_atlas; + +struct ground_info +{ + String name; // todo add descr? + std::shared_ptr<ground_atlas> atlas; + Vector2ub size; + pass_mode pass; +}; + +} // namespace floormat |