-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCallbacks.lua
More file actions
34 lines (23 loc) · 786 Bytes
/
Copy pathCallbacks.lua
File metadata and controls
34 lines (23 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
local name, AdventureGuide = ...;
AdventureGuide.CallbackRegistry = CreateFromMixins(CallbackRegistryMixin)
AdventureGuide.CallbackRegistry:OnLoad()
AdventureGuide.CallbackRegistry:GenerateCallbackEvents({
"SavedVariables_OnInitialized",
"CVarInfo_UiScaleChanged",
"Player_OnLevelChanged",
"InternalMap_OnZoneChanged",
"InternalMap_SetMapID",
"Zone_OnChangedNewArea",
"Quest_OnQuestAccepted",
"Quest_OnQuestTurnIn",
"Quest_OnQuestLogUpdated",
"Quest_OnQuestCriteriaCompleted",
"Quest_OnQuestCriteriaUpdated",
"Quest_OnQuestRemoved",
"Quest_OnQuestLogQuestEntered",
"Quest_OnQuestLogQuestLeave",
"NamePlate_OnUnitAdded",
"NamePlate_OnUnitRemoved",
"QuestLog_ScanCompleted",
"QuestLog_OnQuestSelected",
})