blob: 6ff4e3a048a7f537f3267dacce26970ea30d6f0c (
plain)
1
2
3
4
5
6
7
8
9
10
|
#pragma once
namespace floormat {
enum class object_type : unsigned char {
none, critter, scenery, light, hole, COUNT,
};
template<typename T> struct object_type_;
} // namespace floormat
|