blob: a19d560b3367cf91d0a7d9c44f75217d655e3008 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#include "compat/integer-types.hpp"
namespace floormat::Wall {
enum class Group_ : uint8_t { wall, side, top, corner, COUNT };
enum class Direction_ : uint8_t { N, W, COUNT };
constexpr inline auto Direction_COUNT = (size_t)Wall::Direction_::COUNT;
constexpr inline auto Group_COUNT = (size_t)Wall::Group_::COUNT;
} // namespace floormat::Wall
|