summaryrefslogtreecommitdiffhomepage
path: root/src/object-type.hpp
blob: 3a6a92e9cb0322fd82649b426d833c231f547b58 (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,
};
constexpr inline size_t object_type_BITS = 3;

} // namespace floormat