summaryrefslogtreecommitdiffhomepage
path: root/loader/wall-cell.hpp
blob: 541a833975237f17d8c4fa74b7d68b2761c3760d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once
#include <memory>
#include <Corrade/Containers/String.h>

namespace floormat {

class wall_atlas;

struct wall_cell
{
    std::shared_ptr<wall_atlas> atlas;
    String name;

    static Array<wall_cell> load_atlases_from_json();
};

} // namespace floormat