ST_engine  0.3-ALPHA
key_event.hpp
1 /* This file is part of the "ST" project.
2  * You may use, distribute or modify this code under the terms
3  * of the GNU General Public License version 2.
4  * See LICENCE.txt in the root directory of the project.
5  *
6  * Author: Maxim Atanasov
7  * E-mail: maxim.atanasov@protonmail.com
8  */
9 
10 #ifndef ST_KEY_EVENT_HPP
11 #define ST_KEY_EVENT_HPP
12 
13 #include <cstdint>
14 
15 namespace ST {
16 
17  enum class key_event : uint8_t {
18  PRESS = 0,
19  HOLD = 1,
20  RELEASE = 2
21  };
22 }
23 
24 #endif //ST_KEY_EVENT_HPP