35 lines
555 B
Lua
Raw Permalink Normal View History

2025-01-04 23:00:19 +08:00
---@class UGCLayout_BP_C:UAEUserWidget
--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;