12 lines
383 B
C#
12 lines
383 B
C#
namespace Content.Shared.NPC.Systems;
|
|
|
|
public abstract partial class SharedNPCSystem : EntitySystem
|
|
{
|
|
/// <summary>
|
|
/// Returns whether the given entity is an NPC.
|
|
/// </summary>
|
|
/// <param name="uid">Entity UID to check.</param>
|
|
/// <returns><c>true</c> if the entity is an NPC, otherwise <c>false</c>.</returns>
|
|
public abstract bool IsNpc(EntityUid uid);
|
|
}
|