SpiecsEngine
 
Loading...
Searching...
No Matches

◆ EventCategory

This enum defines what specific event category is.

Enumerator
None 
EventCategoryApplication 
EventCategorySlate 
EventCategoryInput 
EventCategoryKeyboard 
EventCategoryMouse 
EventCategoryMouseButton 
EventCategoryWorld 

Definition at line 59 of file Event.h.

60 {
61 None = 0, /* @brief None */
62 EventCategoryApplication = (1 << 0), /* @brief Application */
63 EventCategorySlate = (1 << 1), /* @brief Slate */
64 EventCategoryInput = (1 << 2), /* @brief Input */
65 EventCategoryKeyboard = (1 << 3), /* @brief Keyboard */
66 EventCategoryMouse = (1 << 4), /* @brief Mouse */
67 EventCategoryMouseButton = (1 << 5), /* @brief MouseButton */
68 EventCategoryWorld = (1 << 6), /* @brief World */
69 };
@ EventCategoryMouse
Definition Event.h:66
@ EventCategoryWorld
Definition Event.h:68
@ EventCategoryInput
Definition Event.h:64
@ None
Definition Event.h:61
@ EventCategoryApplication
Definition Event.h:62