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
|