summaryrefslogtreecommitdiffhomepage
path: root/loader/vobj-info.hpp
blob: 8bc7d1890d3ffe1a3beb24051b8f1ce847afdf46 (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 {

struct anim_atlas;

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

} // namespace floormat