blob: 8c954b5ae4a07dadbcbfc1cab4ff65e0323c9b99 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#include "src/scenery.hpp"
#include <Corrade/Containers/String.h>
namespace floormat {
struct scenery_cell final
{
String name;
scenery_proto proto;
};
} // namespace floormat
|