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