36 lines
569 B
Lua
36 lines
569 B
Lua
--
|
|
-- DESCRIPTION
|
|
--
|
|
-- @COMPANY **
|
|
-- @AUTHOR **
|
|
-- @DATE ${date} ${time}
|
|
--
|
|
require "UnLua"
|
|
---@type NiagaraActor_C
|
|
local M = UnLua.Class()
|
|
|
|
-- function M:Initialize(Initializer)
|
|
-- end
|
|
|
|
-- function M:UserConstructionScript()
|
|
-- end
|
|
|
|
function M:ReceiveBeginPlay()
|
|
end
|
|
-- function M:ReceiveEndPlay()
|
|
-- end
|
|
|
|
-- function M:ReceiveTick(DeltaSeconds)
|
|
-- end
|
|
|
|
-- function M:ReceiveAnyDamage(Damage, DamageType, InstigatedBy, DamageCauser)
|
|
-- end
|
|
|
|
-- function M:ReceiveActorBeginOverlap(OtherActor)
|
|
-- end
|
|
|
|
-- function M:ReceiveActorEndOverlap(OtherActor)
|
|
-- end
|
|
|
|
return M
|