tibia-client/modules/client_background/background.lua

23 lines
335 B
Lua

Background = { }
-- private variables
local background
-- public functions
function Background.init()
background = displayUI('background.otui')
end
function Background.terminate()
background:destroy()
background = nil
end
function Background.hide()
background:hide()
end
function Background.show()
background:show()
end