17 lines
386 B
Lua
17 lines
386 B
Lua
UIMiniWindowContainer = extends(UIWidget)
|
|
|
|
function UIMiniWindowContainer.create()
|
|
local container = UIMiniWindowContainer.internalCreate()
|
|
container:setFocusable(false)
|
|
container:setPhantom(true)
|
|
return container
|
|
end
|
|
|
|
function UIMiniWindowContainer:onDrop(widget, mousePos)
|
|
print 'drop'
|
|
end
|
|
|
|
function UIMiniWindowContainer:getClassName()
|
|
return 'UIMiniWindowContainer'
|
|
end
|