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