Added minion support

This commit is contained in:
Dayve
2017-04-15 22:14:09 +10:00
parent 1165e3315c
commit 6cf19c3381
85 changed files with 45266 additions and 29119 deletions

View File

@@ -16,6 +16,7 @@ LoadModule("Modules/Common")
LoadModule("Modules/Data", launch)
LoadModule("Modules/ModTools")
LoadModule("Modules/ItemTools")
LoadModule("Modules/CalcTools")
LoadModule("Classes/ControlHost")
@@ -41,6 +42,7 @@ local classList = {
-- Mode: Build
"ModList",
"ModDB",
"MinionListControl",
"ImportTab",
"NotesTab",
"ConfigTab",
@@ -190,7 +192,7 @@ function main:Init()
common.New("TextListControl", nil, 0, 100, 630, 290, nil, changeList),
})
end)
self.controls.devMode = common.New("LabelControl", {"BOTTOMLEFT",self.anchorUpdate,"BOTTOMLEFT"}, 0, 0, 0, 18, "^1Dev Mode")
self.controls.devMode = common.New("LabelControl", {"BOTTOMLEFT",self.anchorUpdate,"BOTTOMLEFT"}, 0, 0, 0, 18, "^1EXPERIMENTAL")
self.controls.devMode.shown = function()
return launch.devMode
end