-
Notifications
You must be signed in to change notification settings - Fork 0
/
core.lua
57 lines (49 loc) · 1.35 KB
/
core.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
local includes = {
--"Headers/autolocalizer.lua",
"Headers/util.lua",
"Headers/links.lua",
"Handlers/debughandler.lua",
"Handlers/taskhandler.lua",
"Handlers/skinhandler.lua",
"Handlers/themehandler.lua",
"Handlers/fonthandler.lua",
"Handlers/texturehandler.lua",
"Controls/object.lua",
"Controls/font.lua",
"Controls/control.lua",
"Controls/screen.lua",
"Controls/window.lua",
"Controls/label.lua",
"Controls/button.lua",
"Controls/textbox.lua",
"Controls/checkbox.lua",
"Controls/trackbar.lua",
"Controls/colorbars.lua",
"Controls/scrollpanel.lua",
"Controls/image.lua",
"Controls/textbox.lua",
"Controls/layoutpanel.lua",
"Controls/grid.lua",
"Controls/stackpanel.lua",
"Controls/imagelistview.lua",
"Controls/progressbar.lua",
"Controls/multiprogressbar.lua",
"Controls/scale.lua",
"Controls/panel.lua",
"Controls/treeviewnode.lua",
"Controls/treeview.lua",
}
local NotAchili = widget
NOTACHILI_TOP = "modules/notAchili/"
NOTACHILI_DIRNAME = NOTACHILI_TOP .. "data/"
NotAchili.CHILI_DIRNAME = NOTACHILI_DIRNAME
NotAchili.CHILI_TOP = NOTACHILI_TOP
if (-1>0) then
NotAchili = {}
-- make the table strict
VFS.Include(NotAchili.CHILI_DIRNAME .. "Headers/strict.lua")(NotAchili, widget)
end
for _, file in ipairs(includes) do
VFS.Include(NotAchili.CHILI_DIRNAME .. file, NotAchili)
end
return NotAchili