summaryrefslogtreecommitdiffhomepage
path: root/src/wall-defs.hpp
blob: 0f33ae4cbf1d6be68d853ea83daa3c1cd075c3f8 (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_L, corner_R, 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