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,25 @@
LUI.UILongCountdown = InheritFrom( LUI.UIElement )
LUI.UILongCountdown.build = function ( f1_arg0, f1_arg1 )
return LUI.UILongCountdown.new( f1_arg1.end_time )
end
LUI.UILongCountdown.new = function ( f2_arg0 )
local self = LUI.UIElement.new()
if LUI.UIElement.setupUILongCountdown ~= nil then
self:setupUILongCountdown( f2_arg0 )
end
self:setClass( LUI.UILongCountdown )
self.setEndTime = LUI.UILongCountdown.setEndTime
if f2_arg0 then
self:setEndTime( f2_arg0 )
end
return self
end
LUI.UILongCountdown.setEndTime = function ( f3_arg0, f3_arg1 )
if LUI.UIElement.setEndTimeInC ~= nil then
f3_arg0:setEndTimeInC( f3_arg1 )
end
end
LUI.UILongCountdown.id = "LUICountdown"