InitialInfectedRoleComponent.cs 275 B

123456789101112
  1. using Content.Shared.Roles;
  2. namespace Content.Server.Roles;
  3. /// <summary>
  4. /// Added to mind role entities to tag that they are an initial infected.
  5. /// </summary>
  6. [RegisterComponent]
  7. public sealed partial class InitialInfectedRoleComponent : BaseMindRoleComponent
  8. {
  9. }