10 lines
247 B
C#
10 lines
247 B
C#
using Content.Shared.Roles;
|
|
|
|
namespace Content.Server.Roles;
|
|
|
|
/// <summary>
|
|
/// Adds to a mind role ent to tag they're a Survivor
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class SurvivorRoleComponent : BaseMindRoleComponent;
|