UGCProjects/GZJ/Script/Blueprint/AI/AIC_NormalMonster.lua

35 lines
597 B
Lua
Raw Normal View History

2025-01-08 22:46:12 +08:00
---@class AIC_NormalMonster_C:MobAIController
--Edit Below--
local AIC_NormalMonster = {};
--[[
function AIC_NormalMonster:ReceiveBeginPlay()
self.SuperClass.ReceiveBeginPlay(self);
end
--]]
--[[
function AIC_NormalMonster:ReceiveTick(DeltaTime)
self.SuperClass.ReceiveTick(self, DeltaTime);
end
--]]
--[[
function AIC_NormalMonster:ReceiveEndPlay()
self.SuperClass.ReceiveEndPlay(self);
end
--]]
--[[
function AIC_NormalMonster:GetReplicatedProperties()
return
end
--]]
--[[
function AIC_NormalMonster:GetAvailableServerRPCs()
return
end
--]]
return AIC_NormalMonster;