6
StarHorizon_Public/Content.Server/NPC/Systems/NPCPerceptionSystem.cs
2025-08-05 10:00:54 +03:00

14 lines
308 B
C#

namespace Content.Server.NPC.Systems;
/// <summary>
/// Handles sight + sounds for NPCs.
/// </summary>
public sealed partial class NPCPerceptionSystem : EntitySystem
{
public override void Update(float frameTime)
{
base.Update(frameTime);
UpdateRecentlyInjected(frameTime);
}
}