mirror of
https://github.com/devZoGok/PlanetFleet.git
synced 2026-08-26 19:43:29 +00:00
28 lines
423 B
Lua
28 lines
423 B
Lua
Size = {x = 140, y = 40}
|
|
|
|
numGui = 4
|
|
gui = {
|
|
{
|
|
pos = {x = 110, y = 150},
|
|
size = Size,
|
|
guiType = GuiType.TEXTBOX
|
|
},
|
|
{
|
|
pos = {x = 110, y = 190},
|
|
size = Size,
|
|
guiType = GuiType.TEXTBOX
|
|
},
|
|
{
|
|
pos = {x = 110, y = 220},
|
|
size = Size,
|
|
guiType = GuiType.TEXTBOX
|
|
},
|
|
{
|
|
pos = {x = 420, y = 400},
|
|
size = {x = 150, y = 50},
|
|
guiType = GuiType.BUTTON,
|
|
name = 'Ok',
|
|
buttonType = ButtonType.NEW_MAP_OK
|
|
}
|
|
}
|