-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathinit.lua
29 lines (23 loc) · 796 Bytes
/
init.lua
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
--[[
-- This is the first file initialized in the addon, it's really just a global setter, if anything.
-- It can be mostly left empty
]]
local _, core = ...;
local _G = _G;
local L = core.L;
core.PDKP = {}; -- global addon object
core.characterDB = {}; -- global characterDB
--core.guildDB = {}; -- global guildDB
--core.dkpDB = {};
core.DKP = {}; -- global dkp object.
core.Guild = {}; -- global guild object.
core.Util = {}; -- global utility object.
core.Shroud = {};
core.Item = {};
core.Invites = {};
core.Raid = {};
core.Comms = {};
core.Import = {};
core.Setup = {}; -- Creates the UI for us.
core.Member = {}; -- Member class object.
core.PDKP = LibStub("AceAddon-3.0"):NewAddon("PDKP", "AceConsole-3.0", "AceComm-3.0", "AceSerializer-3.0", "AceTimer-3.0"); -- set the plugin up.