blob: ce3f6d54cc765e4bc0b9303ec32f8f098d5fd92c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#pragma once
#include "compat/borrowed-ptr.hpp"
#include <Corrade/Containers/String.h>
namespace floormat {
class anim_atlas;
struct anim_cell
{
bptr<anim_atlas> atlas;
String name;
};
} // namespace floormat
|