aboutsummaryrefslogtreecommitdiff
path: root/src/game/keycodes.hpp
blob: 84ca5a73d2af0b9cd924f3dc4e0d6dd888676a19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

namespace keycodes
{

constexpr auto ENTER = 10;
constexpr auto ESCAPE = 27;
constexpr auto BACKSPACE = 127;

constexpr auto UP_ARROW = 65;
constexpr auto DOWN_ARROW = 66;
constexpr auto RIGHT_ARROW = 67;
constexpr auto LEFT_ARROW = 68;

} // namespace keycodes