-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmenuElements.lua
More file actions
26 lines (22 loc) · 2.22 KB
/
menuElements.lua
File metadata and controls
26 lines (22 loc) · 2.22 KB
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
menuElements = {
playButton = { text = 'Play', x = 100, y = 100, w = menuFont:getWidth('Play'), h = menuFont:getHeight('Play') },
tutorialButton = { text = 'Tutorial', x = 100, y = 200, w = menuFont:getWidth('Tutorial'), h = menuFont:getHeight('Tutorial') },
settingsButton = { text = 'Settings', x = 100, y = 300, w = menuFont:getWidth('Settings'), h = menuFont:getHeight('Settings') },
creditsButton = { text = 'Credits', x = 100, y = 400, w = menuFont:getWidth('Credits'), h = menuFont:getHeight('Credits') },
exitButton = { text = 'Exit', x = 100, y = 500, w = menuFont:getWidth('Exit'), h = menuFont:getHeight('Exit') },
modToggleButton = { text = 'Mod Toggle', x = 100, y = 600, w = menuFont:getWidth('Mod Toggle'), h = menuFont:getHeight('Mod Toggle') },
startButton = { text = 'Start A Cult', x = 100, y = 900, w = menuFont:getWidth('Start A Cult'), h = menuFont:getHeight('Start A Cult') },
mainMenuButton = { text = 'Main Menu', x = 100, y = 900, w = menuFont:getWidth('Main Menu'), h = menuFont:getHeight('Main Menu') },
beginningsButton = { text = 'Beginnings', x = 100, y = 100, w = menuFont:getWidth('Beginnings'), h = menuFont:getHeight('Beginnings') },
rhybaaxButton = { text = 'Rhybaax', x = 100, y = 200, w = menuFont:getWidth('Rhybaax'), h = menuFont:getHeight('Rhybaax') },
wiindigoButton = { text = 'Wiindigo', x = 100, y = 300, w = menuFont:getWidth('Wiindigo'), h = menuFont:getHeight('Wiindigo') },
jhaitiButton = { text = "Jhai'ti", x = 100, y = 400, w = menuFont:getWidth("Jhai'ti"), h = menuFont:getHeight("Jhai'ti") },
kekujiraButton = { text = 'Kekujira', x = 100, y = 500, w = menuFont:getWidth('Kekujira'), h = menuFont:getHeight('Kekujira') },
yacareButton = { text = 'Yacare', x = 100, y = 600, w = menuFont:getWidth('Yacare'), h = menuFont:getHeight('Yacare') },
uhluhtcButton = { text = "Uhl'Uht'C", x = 100, y = 700, w = menuFont:getWidth("Uhl'Uht'C"), h = menuFont:getHeight("Uhl'Uht'C") },
divitaeButton = { text = 'Divitae', x = 100, y = 800, w = menuFont:getWidth('Divitae'), h = menuFont:getHeight('Divitae') }
-- divitae is just a test, a more dynamic way to implement god select needs implementing
}
function menuElements:initGodButtons()
end
return menuElements