2011-05-30 13:01:19 -04:00
|
|
|
local core = LibStub("AceAddon-3.0"):GetAddon("AllTheLittleThings")
|
2011-05-30 18:13:08 -04:00
|
|
|
local mod = core:NewModule("Staging", "AceEvent-3.0")
|
|
|
|
local db
|
2011-05-30 13:01:19 -04:00
|
|
|
|
|
|
|
local defaults = {
|
|
|
|
}
|
|
|
|
local options = {
|
|
|
|
}
|
|
|
|
|
|
|
|
function mod:OnInitialize()
|
2011-05-31 02:40:36 -04:00
|
|
|
self:RegisterOptions(options, defaults, function(d) db=d end)
|
2011-05-30 13:01:19 -04:00
|
|
|
end
|
|
|
|
|