Fixed event typedefs

This commit is contained in:
KiritoDv 2024-12-27 23:07:35 -06:00
parent d0fb09f25c
commit acf7032b85

View File

@ -6,18 +6,18 @@
typedef uint16_t EventID;
typedef enum EventType {
typedef enum {
EVENT_TYPE_PRE,
EVENT_TYPE_POST
} EventType;
typedef enum EventPriority {
typedef enum {
EVENT_PRIORITY_LOW,
EVENT_PRIORITY_NORMAL,
EVENT_PRIORITY_HIGH,
} EventPriority;
typedef struct IEvent {
typedef struct {
bool cancelled;
} IEvent;