diff Modules/GuildInfo.lua @ 102:1e511e9aaca5

- clean up handler loading inconsistencies; exclude free frames from anchor cluster iterations, and remove extraneous PLAYER_LOGIN handling - added a Setup method to the handler template that creates and reconciles a SavedVariables table for that module
author Nenue
date Wed, 25 Jan 2017 23:11:27 -0500
parents bb38bc0e787f
children a41f6b74709a
line wrap: on
line diff
--- a/Modules/GuildInfo.lua	Sat Jan 21 20:12:17 2017 -0500
+++ b/Modules/GuildInfo.lua	Wed Jan 25 23:11:27 2017 -0500
@@ -0,0 +1,22 @@
+VeneerRosterKunMixin = {
+  addonTrigger = 'Blizzard_GuildUI',
+
+  anchorFrame = 'GuildFrame',
+  anchorPoint = 'TOPLEFT',
+}
+
+
+local module = VeneerRosterKunMixin
+
+function module:OnLoad()
+
+  Veneer:AddHandler(self, self.anchorPoint)
+
+  self:RegisterEvent('GUILD_ROSTER_UPDATE')
+  self:RegisterEvent('GUILD_TRADESKILL_UPDATE')
+end
+
+function module:OnEvent()
+
+
+end
\ No newline at end of file