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