35 lines
555 B
Lua
35 lines
555 B
Lua
---@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; |