Files
love-luigi/example/layout/about.lua
2016-02-23 01:31:13 -05:00

16 lines
427 B
Lua

return { style = 'dialog',
{ style = 'dialogHead', text = 'About LUIGI' },
{ style = 'dialogBody', padding = 24, icon = 'logo.png', align = 'middle right',
textOffset = { -250, 0 },
text = [[
Lovely User Interfaces for Game Inventors
Copyright (c) 2015 airstruck
]]
},
{ style = 'dialogFoot',
{}, -- spacer
{ style = 'dialogButton', id = 'closeButton', text = 'Close' }
}
}