summaryrefslogtreecommitdiffhomepage
path: root/loader/vobj-cell.hpp
blob: 1fa22ea21cb4afa4d44693e32c62dc1003dac6dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once
#include <cr/String.h>
#include <memory>

namespace floormat {

class anim_atlas;

struct vobj_cell final
{
    String name, descr;
    std::shared_ptr<class anim_atlas> atlas;
};

} // namespace floormat