Remove "typedef struct" or "typedef enum" from a few places

This commit is contained in:
brainiac
2025-12-28 02:25:43 -08:00
parent b8deacca01
commit 72fa8cf845
17 changed files with 42 additions and 43 deletions
+2 -2
View File
@@ -17,7 +17,7 @@
*/
#pragma once
typedef enum {
enum QuestEventID {
EVENT_SAY = 0,
EVENT_TRADE, //being given an item or money
EVENT_DEATH, //being killed
@@ -169,6 +169,6 @@ typedef enum {
EVENT_SPELL_EFFECT_BOT,
EVENT_SPELL_EFFECT_BUFF_TIC_BOT,
_LargestEventID
} QuestEventID;
};
extern const char *QuestEventSubroutines[_LargestEventID];