blob: 35b25ccfb279f2ceef5582476fa058b6896e6768 (
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, COUNT,
};
template<typename T> struct object_type_;
} // namespace floormat
|