diff options
Diffstat (limited to 'loader/ground-cell.hpp')
-rw-r--r-- | loader/ground-cell.hpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/loader/ground-cell.hpp b/loader/ground-cell.hpp index 260301c2..0e1e51be 100644 --- a/loader/ground-cell.hpp +++ b/loader/ground-cell.hpp @@ -1,6 +1,9 @@ #pragma once -#include "src/ground-def.hpp" +#include "compat/vector-wrapper-fwd.hpp" +#include "src/pass-mode.hpp" #include <memory> +#include <Corrade/Containers/String.h> +#include <Magnum/Math/Vector2.h> namespace floormat { @@ -12,6 +15,8 @@ struct ground_cell String name; Vector2ub size; pass_mode pass = pass_mode::pass; + + static vector_wrapper<const ground_cell> load_atlases_from_json(); }; } // namespace floormat |