This repository has been archived by the owner on Apr 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.lua
59 lines (49 loc) · 2.66 KB
/
main.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
58
59
----------------------------------------------------------------------------------
-- Search paths
----------------------------------------------------------------------------------
addSearchPath(moduleDirectory) -- must be here to make everything else work
include "headquarters/searchPaths.lua"
----------------------------------------------------------------------------------
-- Include required global files
----------------------------------------------------------------------------------
include "headquarters/saslFunctions.lua"
----------------------------------------------------------------------------------
-- Include required global files
----------------------------------------------------------------------------------
include "headquarters/global.lua"
----------------------------------------------------------------------------------
-- Global variables
----------------------------------------------------------------------------------
include "headquarters/variables.lua"
----------------------------------------------------------------------------------
-- Fonts
----------------------------------------------------------------------------------
include "headquarters/fonts.lua"
-- -----------------------------------------------------------------------------
-- Colours
-- -----------------------------------------------------------------------------
include "headquarters/colours.lua"
-- -----------------------------------------------------------------------------
-- Components
-- -----------------------------------------------------------------------------
include "headquarters/components.lua"
-- -----------------------------------------------------------------------------
-- Draw loop
-- -----------------------------------------------------------------------------
include "headquarters/draw.lua"
-- -----------------------------------------------------------------------------
-- Core functions
-- -----------------------------------------------------------------------------
include "headquarters/coreFunctions.lua"
-- -----------------------------------------------------------------------------
-- Popup definitions
-- -----------------------------------------------------------------------------
include "headquarters/popups.lua"
-- -----------------------------------------------------------------------------
-- buttonAnimations
-- -----------------------------------------------------------------------------
-- include "globalAssets/datarefs/buttonAnimations.lua"
-- -----------------------------------------------------------------------------
-- Update loop
-- -----------------------------------------------------------------------------
include "headquarters/update.lua"