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