mirror of
https://github.com/ApfelTeeSaft/PlanetFleet.git
synced 2026-08-26 19:33:38 +00:00
34 lines
584 B
Lua
34 lines
584 B
Lua
Size = {x = 150, y = 40}
|
|
|
|
numGui = 4
|
|
gui = {
|
|
{
|
|
pos = {x = 110, y = 40},
|
|
size = Size,
|
|
guiType = GuiType.BUTTON,
|
|
name = 'Single player',
|
|
buttonType = ButtonType.SINGLE_PLAYER
|
|
},
|
|
{
|
|
pos = {x = 110, y = 90},
|
|
size = Size,
|
|
guiType = GuiType.BUTTON,
|
|
name = 'Map editor',
|
|
buttonType = ButtonType.MAP_EDITOR
|
|
},
|
|
{
|
|
pos = {x = 110, y = 140},
|
|
size = Size,
|
|
guiType = GuiType.BUTTON,
|
|
name = 'Options',
|
|
buttonType = ButtonType.OPTIONS
|
|
},
|
|
{
|
|
pos = {x = 110, y = 190},
|
|
size = Size,
|
|
guiType = GuiType.BUTTON,
|
|
name = 'Exit',
|
|
buttonType = ButtonType.EXIT
|
|
}
|
|
}
|