UGCProjects/GZJ/Script/Blueprint/AI/AIC_BossCareful.lua
2025-01-08 22:46:12 +08:00

35 lines
581 B
Lua

---@class AIC_BossCareful_C:MobAIController
--Edit Below--
local AIC_BossCareful = {};
--[[
function AIC_BossCareful:ReceiveBeginPlay()
self.SuperClass.ReceiveBeginPlay(self);
end
--]]
--[[
function AIC_BossCareful:ReceiveTick(DeltaTime)
self.SuperClass.ReceiveTick(self, DeltaTime);
end
--]]
--[[
function AIC_BossCareful:ReceiveEndPlay()
self.SuperClass.ReceiveEndPlay(self);
end
--]]
--[[
function AIC_BossCareful:GetReplicatedProperties()
return
end
--]]
--[[
function AIC_BossCareful:GetAvailableServerRPCs()
return
end
--]]
return AIC_BossCareful;