mirror of
https://github.com/devZoGok/PlanetFleet.git
synced 2026-08-26 19:43:29 +00:00
20 lines
310 B
Lua
20 lines
310 B
Lua
Size = {x = 150, y = 40}
|
|
|
|
numGui = 2
|
|
gui = {
|
|
{
|
|
pos = {x = 110, y = 40},
|
|
size = Size,
|
|
guiType = GuiType.BUTTON,
|
|
name = 'New map',
|
|
buttonType = ButtonType.NEW_MAP
|
|
},
|
|
{
|
|
pos = {x = 110, y = 90},
|
|
size = Size,
|
|
guiType = GuiType.BUTTON,
|
|
name = 'Load map',
|
|
buttonType = ButtonType.LOAD_MAP
|
|
}
|
|
}
|