mirror of
https://github.com/ApfelTeeSaft/PlanetFleet.git
synced 2026-08-26 19:33:38 +00:00
15 lines
300 B
Lua
15 lines
300 B
Lua
res = graphics.resolution
|
|
Size = {x = 70, y = 70}
|
|
margin = 10
|
|
sz = {x = Size.x - margin, y = Size.y - margin}
|
|
|
|
gui = {
|
|
{
|
|
pos = {x = res.x - Size.x + .5 * margin, y = res.y - Size.y + .5 * margin},
|
|
size = sz,
|
|
guiType = GuiType.BUTTON,
|
|
buttonType = ButtonType.FORT_TRAIN,
|
|
trigger = 82
|
|
},
|
|
}
|