Mercurial > wow > dependencyloader
view DependencyLoader/start.lua @ 17:f825ccf94a89
fixed an indexing issue in Addon.lua
moved most of the code in DependencyLoader.lua to Core.lua, and renamed the former to frontend.lua
updated load.xml
rearranged stuff in start.lua
author | mckenziemc |
---|---|
date | Sat, 11 Dec 2010 03:32:04 -0800 |
parents | 5362e308c3eb |
children |
line wrap: on
line source
-- start.lua -- Initializes components of DependencyLoader local addonName, addonTable = ... -- prepare output functions local LibPrint = LibStub("LibPrint-1.0") addonTable.printStream = LibPrint:NewStream("DependencyLoader", "DpLdr", print) addonTable.debugStream = LibPrint:NewStream("DependencyLoader", "DpLdr", "mcm") function addonTable.print(...) addonTable.printStream:Print(...) end function addonTable.debug(...) addonTable.debugStream:Print(...) end addonTable.debug("loading", addonName)