sandbox
Loading...
Searching...
No Matches
input_action.hpp
1#ifndef LIBSBX_DEVICES_INPUT_ACTION_HPP_
2#define LIBSBX_DEVICES_INPUT_ACTION_HPP_
3
4#include <cinttypes>
5
6#include <GLFW/glfw3.h>
7
8namespace sbx::devices {
9
10enum class input_action : std::int32_t {
11 release = GLFW_RELEASE,
12 press = GLFW_PRESS,
13 repeat = GLFW_REPEAT,
14}; // enum class input_action
15
16} // namespace sbx::devices
17
18#endif // LIBSBX_DEVICES_INPUT_ACTION_HPP_