| 12345678910111213141516 |
- using Content.Shared.Roles;
- namespace Content.Server.Roles;
- /// <summary>
- /// Added to mind role entities to tag that they are a Revolutionary.
- /// </summary>
- [RegisterComponent]
- public sealed partial class RevolutionaryRoleComponent : BaseMindRoleComponent
- {
- /// <summary>
- /// For headrevs, how many people you have converted.
- /// </summary>
- [DataField, ViewVariables(VVAccess.ReadWrite)]
- public uint ConvertedCount = 0;
- }
|