10 lines
287 B
C#
10 lines
287 B
C#
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.Roles.Components;
|
|
|
|
/// <summary>
|
|
/// Added to mind role entities to tag that they are survivor.
|
|
/// </summary>
|
|
[RegisterComponent, NetworkedComponent]
|
|
public sealed partial class SurvivorRoleComponent : BaseMindRoleComponent;
|