summaryrefslogtreecommitdiffhomepage
path: root/src/pass-mode.hpp
blob: accefaaed6843d8b35420ed35bf77b75176f586e (plain)
1
2
3
4
5
6
7
8
9
10
#pragma once
#include <cstdint>

namespace floormat {

enum class pass_mode : std::uint8_t { blocked, see_through, shoot_through, pass, };
constexpr inline std::uint8_t pass_mode_COUNT = 4;
constexpr inline std::uint8_t pass_mode_BITS = 2;

} // namespace floormat