blob: e8cd15d5037193d84f5a2da5ce227a4bac0b69cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#pragma once
#include "compat/vector-wrapper-fwd.hpp"
#include <memory>
#include <Corrade/Containers/String.h>
namespace floormat {
class wall_atlas;
struct wall_cell
{
std::shared_ptr<wall_atlas> atlas;
String name;
static vector_wrapper<const wall_cell> load_atlases_from_json();
};
} // namespace floormat
|