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

35 lines
573 B
Lua
Raw Normal View History

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