35 lines
573 B
Lua
35 lines
573 B
Lua
|
---@class AIC_BossMoment_C:MobAIController
|
||
|
--Edit Below--
|
||
|
local AIC_BossMoment = {};
|
||
|
|
||
|
--[[
|
||
|
function AIC_BossMoment:ReceiveBeginPlay()
|
||
|
self.SuperClass.ReceiveBeginPlay(self);
|
||
|
end
|
||
|
--]]
|
||
|
|
||
|
--[[
|
||
|
function AIC_BossMoment:ReceiveTick(DeltaTime)
|
||
|
self.SuperClass.ReceiveTick(self, DeltaTime);
|
||
|
end
|
||
|
--]]
|
||
|
|
||
|
--[[
|
||
|
function AIC_BossMoment:ReceiveEndPlay()
|
||
|
self.SuperClass.ReceiveEndPlay(self);
|
||
|
end
|
||
|
--]]
|
||
|
|
||
|
--[[
|
||
|
function AIC_BossMoment:GetReplicatedProperties()
|
||
|
return
|
||
|
end
|
||
|
--]]
|
||
|
|
||
|
--[[
|
||
|
function AIC_BossMoment:GetAvailableServerRPCs()
|
||
|
return
|
||
|
end
|
||
|
--]]
|
||
|
|
||
|
return AIC_BossMoment;
|