vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 idChat2 = AceLibrary('AceAddon-2.0'):new('AceConsole-2.0', 'AceDB-2.0', 'AceDebug-2.0', 'AceEvent-2.0', 'AceHook-2.0', 'AceModuleCore-2.0')
2 idChat2:RegisterDB('idChat2DB')
3 idChat2:SetModuleMixins('AceEvent-2.0', 'AceHook-2.0')
4 idChat2.Options = {
5 type = 'group',
6 args = {}
7 }
8  
9 function idChat2:OnEnable()
10 self:RegisterChatCommand({'/idchat'}, self.Options)
11 end
12  
13 function idChat2:OnDisable()
14 end
15