tibia-client/modules/client_background/background.lua

25 lines
375 B
Lua
Raw Normal View History

2011-11-02 04:02:56 +01:00
Background = { }
-- private variables
local background
-- public functions
2012-01-07 18:36:58 +01:00
function Background.init()
background = displayUI('background.otui')
background:lower()
2011-11-02 04:02:56 +01:00
end
2012-01-07 18:36:58 +01:00
function Background.terminate()
2011-11-02 04:02:56 +01:00
background:destroy()
background = nil
2012-02-07 01:41:53 +01:00
Background = nil
2011-11-02 04:02:56 +01:00
end
function Background.hide()
background:hide()
end
function Background.show()
background:show()
end