UGCProjects/SoldierWar/Script/UGCLayout_BP.lua
2025-01-04 23:00:19 +08:00

40 lines
744 B
Lua

---@class UGCLayout_BP_C:UAEUserWidget
---@field TextBlock_1 UTextBlock
---@field TextBlock_2 UTextBlock
---@field TextBlock_3 UTextBlock
---@field WB_BuffButton UWB_BuffButton_C
---@field WB_PlayerSoldiers UWB_PlayerSoldiers_C
--Edit Below--
local UGCLayout_BP = {};
--[[
function UGCLayout_BP:ReceiveBeginPlay()
self.SuperClass.ReceiveBeginPlay(self);
end
--]]
--[[
function UGCLayout_BP:ReceiveTick(DeltaTime)
self.SuperClass.ReceiveTick(self, DeltaTime);
end
--]]
--[[
function UGCLayout_BP:ReceiveEndPlay()
self.SuperClass.ReceiveEndPlay(self);
end
--]]
--[[
function UGCLayout_BP:GetReplicatedProperties()
return
end
--]]
--[[
function UGCLayout_BP:GetAvailableServerRPCs()
return
end
--]]
return UGCLayout_BP;