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