RevolutionaryRoleComponent.cs 450 B

12345678910111213141516
  1. using Content.Shared.Roles;
  2. namespace Content.Server.Roles;
  3. /// <summary>
  4. /// Added to mind role entities to tag that they are a Revolutionary.
  5. /// </summary>
  6. [RegisterComponent]
  7. public sealed partial class RevolutionaryRoleComponent : BaseMindRoleComponent
  8. {
  9. /// <summary>
  10. /// For headrevs, how many people you have converted.
  11. /// </summary>
  12. [DataField, ViewVariables(VVAccess.ReadWrite)]
  13. public uint ConvertedCount = 0;
  14. }