2011-05-30 13:01:19 -04:00
|
|
|
local core = LibStub("AceAddon-3.0"):GetAddon("AllTheLittleThings")
|
|
|
|
local mod = core:NewModule("Battlegrounds", "AceEvent-3.0")
|
2011-05-30 13:25:40 -04:00
|
|
|
local db = core.db.profile[mod:GetName()]
|
2011-05-30 13:01:19 -04:00
|
|
|
|
|
|
|
local defaults = {
|
|
|
|
}
|
|
|
|
local options = {
|
|
|
|
}
|
|
|
|
|
|
|
|
function mod:OnInitialize()
|
|
|
|
core:RegisterOptions(options, defaults)
|
2011-05-30 13:25:40 -04:00
|
|
|
core:RegisterSlashCommand("method", "slsh1", "slash2")
|
2011-05-30 13:01:19 -04:00
|
|
|
end
|
|
|
|
|