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