SUNENGINE 0.0.2
A simple and bright C++ game engine.
 
Loading...
Searching...
No Matches
EventType.h
Go to the documentation of this file.
1
8
9#ifndef EventType_H
10#define EventType_H
11
18enum class EventType
19{
20 KEY_INACTIVE,
21 KEY_PRESS,
22 KEY_HELD,
23 KEY_RELEASE
24};
25
26#endif
EventType
Enum class representing the types of input events.
Definition EventType.h:19