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