aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/direction.hpp
blob: 233f17d4c73a0c2db67eba5941bec80f7c612934 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#include <cstddef>

struct Direction
{
	using value_type = std::size_t;

	static constexpr value_type UP = 0U;
	static constexpr value_type DOWN = 1U;
	static constexpr value_type LEFT = 2U;
	static constexpr value_type RIGHT = 3U;
};