blob: 308bc8a696859fad063e0a2b57bcf007d4267bb9 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#pragma once
namespace floormat {
enum class entity_type : unsigned char {
none, character, scenery, light,
};
constexpr inline size_t entity_type_BITS = 3;
} // namespace floormat
|