tibia-client/modules/background/background.lua

23 lines
336 B
Lua
Raw Normal View History

2011-11-02 04:02:56 +01:00
Background = { }
-- private variables
local background
-- public functions
function Background.create()
2011-11-17 21:40:31 +01:00
background = UI.display('background.otui')
2011-11-02 04:02:56 +01:00
end
function Background.destroy()
background:destroy()
background = nil
end
function Background.hide()
background:hide()
end
function Background.show()
background:show()
end