mirror of
https://github.com/edubart/otclient.git
synced 2025-04-30 17:49:21 +02:00
23 lines
355 B
Lua
23 lines
355 B
Lua
Background = { }
|
|
|
|
-- private variables
|
|
local background
|
|
|
|
-- public functions
|
|
function Background.create()
|
|
background = UI.loadAndDisplay('/background/background.otui')
|
|
end
|
|
|
|
function Background.destroy()
|
|
background:destroy()
|
|
background = nil
|
|
end
|
|
|
|
function Background.hide()
|
|
background:hide()
|
|
end
|
|
|
|
function Background.show()
|
|
background:show()
|
|
end
|