Files
tbd-station-14/Content.Server/NPC/Systems/NPCPerceptionSystem.cs
metalgearsloth 0286b88388 NPC refactor (#10122)
Co-authored-by: metalgearsloth <metalgearsloth@gmail.com>
2022-09-06 00:28:23 +10: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);
}
}