blob: 3dfa698bf2393e372420cf7a0fe8f05897588b47 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#pragma once
#include <memory>
#include <Corrade/Containers/String.h>
namespace floormat {
class wall_atlas;
struct wall_cell
{
String name;
std::shared_ptr<wall_atlas> atlas;
};
} // namespace floormat
|