40 lines
722 B
Lua
40 lines
722 B
Lua
---@class UGCLayout_BP_C:UAEUserWidget
|
|
---@field TextBlock_1 UTextBlock
|
|
---@field TextBlock_2 UTextBlock
|
|
---@field TextBlock_3 UTextBlock
|
|
---@field WB_Bolts UWB_Bolts_C
|
|
---@field WB_BoltTips UWB_BoltTips_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; |