summaryrefslogtreecommitdiffhomepage
path: root/src/object-type.hpp
blob: 1a1d1aff45f5adc8e9d731cfba24c0453bf70452 (plain)
1
2
3
4
5
6
7
8
9
10
#pragma once

namespace floormat {

enum class object_type : unsigned char {
    none, character, scenery, light,
};
constexpr inline size_t object_type_BITS = 3;

} // namespace floormat