mirror of
https://github.com/edubart/otclient.git
synced 2025-04-30 09:39:21 +02:00
13 lines
310 B
Lua
13 lines
310 B
Lua
UIMiniWindowContainer = extends(UIWidget)
|
|
|
|
function UIMiniWindowContainer.create()
|
|
local container = UIMiniWindowContainer.internalCreate()
|
|
container:setFocusable(false)
|
|
container:setPhantom(true)
|
|
return container
|
|
end
|
|
|
|
function UIMiniWindowContainer:getClassName()
|
|
return 'UIMiniWindowContainer'
|
|
end
|