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

35 lines
580 B
Lua
Raw Normal View History

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