12 lines
310 B
Lua
12 lines
310 B
Lua
function autoDestroyParent()
|
|
self.parent:destroy()
|
|
end
|
|
|
|
function messageBox(title, text)
|
|
local msgBox = UI.load("modules/messagebox/messagebox.yml")
|
|
msgBox.locked = true
|
|
msgBox.title = title
|
|
msgBox:child("textLabel").text = text
|
|
msgBox:child("okButton").onClick = autoDestroyParent
|
|
end
|