35 lines
690 B
Lua
35 lines
690 B
Lua
|
---@class BP_DetectingArrowActor_C:Ghost_SonarBeacon_C
|
||
|
--Edit Below--
|
||
|
local BP_DetectingArrowActor = {}
|
||
|
|
||
|
--[[
|
||
|
function BP_DetectingArrowActor:ReceiveBeginPlay()
|
||
|
BP_DetectingArrowActor.SuperClass.ReceiveBeginPlay(self)
|
||
|
end
|
||
|
--]]
|
||
|
|
||
|
--[[
|
||
|
function BP_DetectingArrowActor:ReceiveTick(DeltaTime)
|
||
|
BP_DetectingArrowActor.SuperClass.ReceiveTick(self, DeltaTime)
|
||
|
end
|
||
|
--]]
|
||
|
|
||
|
--[[
|
||
|
function BP_DetectingArrowActor:ReceiveEndPlay()
|
||
|
BP_DetectingArrowActor.SuperClass.ReceiveEndPlay(self)
|
||
|
end
|
||
|
--]]
|
||
|
|
||
|
--[[
|
||
|
function BP_DetectingArrowActor:GetReplicatedProperties()
|
||
|
return
|
||
|
end
|
||
|
--]]
|
||
|
|
||
|
--[[
|
||
|
function BP_DetectingArrowActor:GetAvailableServerRPCs()
|
||
|
return
|
||
|
end
|
||
|
--]]
|
||
|
|
||
|
return BP_DetectingArrowActor
|