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