mirror of
https://github.com/edubart/otclient.git
synced 2025-04-30 09:39:21 +02:00
15 lines
244 B
Lua
15 lines
244 B
Lua
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
|