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