38 lines
706 B
Lua
38 lines
706 B
Lua
---@class BP_ReflectiveWall_C:BP_DamageableActor_C
|
|
---@field Sphere UStaticMeshComponent
|
|
---@field Plane UStaticMeshComponent
|
|
--Edit Below--
|
|
---@type BP_ReflectiveWall_C
|
|
local BP_ReflectiveWall = {};
|
|
|
|
--[[
|
|
function BP_ReflectiveWall:ReceiveBeginPlay()
|
|
self.SuperClass.ReceiveBeginPlay(self);
|
|
end
|
|
--]]
|
|
|
|
--[[
|
|
function BP_ReflectiveWall:ReceiveTick(DeltaTime)
|
|
self.SuperClass.ReceiveTick(self, DeltaTime);
|
|
end
|
|
--]]
|
|
|
|
--[[
|
|
function BP_ReflectiveWall:ReceiveEndPlay()
|
|
self.SuperClass.ReceiveEndPlay(self);
|
|
end
|
|
--]]
|
|
|
|
--[[
|
|
function BP_ReflectiveWall:GetReplicatedProperties()
|
|
return
|
|
end
|
|
--]]
|
|
|
|
--[[
|
|
function BP_ReflectiveWall:GetAvailableServerRPCs()
|
|
return
|
|
end
|
|
--]]
|
|
|
|
return BP_ReflectiveWall; |