This commit is contained in:
2024-09-12 17:25:45 +02:00
commit b4b2350b88
224 changed files with 172565 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
LUI.UICharacterWindow = InheritFrom( LUI.UIElement )
LUI.UICharacterWindow.build = function ( f1_arg0, f1_arg1 )
return LUI.UICharacterWindow.new( f1_arg1 )
end
LUI.UICharacterWindow.new = function ( f2_arg0 )
local self = LUI.UIElement.new()
self:setupCharacterWindow()
self:setClass( LUI.UICharacterWindow )
return self
end
LUI.UICharacterWindow.setCharacterHandle = function ( f3_arg0, f3_arg1 )
if LUI.UIElement.setCharacterHandleInC ~= nil then
f3_arg0:setCharacterHandleInC( f3_arg1 )
end
end
LUI.UICharacterWindow.id = "LUICharacterWindow"