Files
wwdpublic/Content.Shared/NPC/ActiveNPCComponent.cs
Morb f657e29547 Disable SSD indicator for NPC (#20027)
* Make ActiveNPCComponent shared

* Check if entity have ActiveNPC component

* Make networked

* Fix path

* fix
2023-09-27 21:59:12 +02:00

10 lines
246 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared.NPC;
/// <summary>
/// Added to NPCs that are actively being updated.
/// </summary>
[RegisterComponent, NetworkedComponent]
public sealed partial class ActiveNPCComponent : Component {}