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

35 lines
573 B
Lua
Raw Normal View History

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