summaryrefslogtreecommitdiffhomepage
path: root/src/wall-defs.hpp
blob: 9f88853c1aad571d828da9db5bab5f02d6bab839 (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, /*pillar,*/ 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