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

35 lines
637 B
Lua

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