initial commit

This commit is contained in:
Gitea
2020-11-13 14:13:12 -05:00
commit 05df49ff60
368 changed files with 128754 additions and 0 deletions

18
Core/Development/Core.lua Normal file
View File

@@ -0,0 +1,18 @@
-- ------------------------------------------------------------------------------ --
-- TradeSkillMaster --
-- https://tradeskillmaster.com --
-- All Rights Reserved - Detailed license information included with addon. --
-- ------------------------------------------------------------------------------ --
-- only create the TSMDEV table if we're in a dev or test environment
local version = GetAddOnMetadata("TradeSkillMaster", "Version")
if not strmatch(version, "^@tsm%-project%-version@$") and version ~= "v4.99.99" then
return
end
TSMDEV = {}
function TSMDEV.Dump(value)
LoadAddOn("Blizzard_DebugTools")
DevTools_Dump(value)
end