UGCProjects/BoltGods/Script/UI/Tool/WB_ProcessInfo.lua
2025-01-04 23:00:19 +08:00

29 lines
565 B
Lua

---@class WB_ProcessInfo_C:UUserWidget
---@field ProgressBar_Time UProgressBar
---@field TextBlock_ReloadTime UTextBlock
--Edit Below--
---@type WB_ProcessInfo_C
local WB_ProcessInfo = { bInitDoOnce = false; };
--[==[ Construct
function WB_ProcessInfo:Construct()
end
-- Construct ]==]
-- function WB_ProcessInfo:Tick(MyGeometry, InDeltaTime)
-- end
-- function WB_ProcessInfo:Destruct()
-- end
function WB_ProcessInfo:SetReloadTime(InTime)
end
function WB_ProcessInfo:StartProcess(InTime)
--self.ProgressBar_Time:SetPercent()
end
return WB_ProcessInfo;