Files

30 lines
541 B
Lua

numGui = 3
gui = {
{
pos = {x = 110, y = 190},
size = {x = 360, y = 20},
guiType = GuiType.LISTBOX,
listboxType = ListboxType.MAPS,
numMaxDisplay = 5
},
{
pos = {x = 110, y = 250},
size = {x = 140, y = 40},
guiType = GuiType.BUTTON,
name = 'Ok',
buttonType = ButtonType.LOAD_MAP_OK,
numDependencies = 1,
dependencies = {
{dep = 0}
}
},
{
pos = {x = 420, y = 400},
size = {x = 150, y = 50},
guiType = GuiType.BUTTON,
name = 'Back',
buttonType = ButtonType.BACK,
screen = 'mapEditorMenu.lua'
}
}