blob: a9c92a233269c5bbf40ad9e48ce31b2dbe1268c5 (
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 anim_atlas;
struct anim_cell
{
String name;
std::shared_ptr<anim_atlas> atlas;
};
} // namespace floormat
|