tibia-client/modules/addon_mapeffects/mapeffects.lua

15 lines
244 B
Lua
Raw Normal View History

2012-01-06 09:48:59 +01:00
MapEffects = {}
function MapEffects.init()
local box = createWidget('ComboBox')
box:moveTo({x=100, y=8})
box:addOption('Normal')
box:addOption('Bloom')
box:addOption('TV')
--displayUI(box)
end
function MapEffects.terminate()
end