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

35 lines
565 B
Lua
Raw Normal View History

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