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