Move mind role components to shared (#39606)

This commit is contained in:
slarticodefast
2025-08-13 12:51:46 +02:00
committed by GitHub
parent 1f4dfcdcf9
commit 2743dcf67f
66 changed files with 227 additions and 276 deletions

View File

@@ -0,0 +1,16 @@
using Robust.Shared.GameStates;
namespace Content.Shared.Roles.Components;
/// <summary>
/// Added to mind role entities to tag that they are a Revolutionary.
/// </summary>
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
public sealed partial class RevolutionaryRoleComponent : BaseMindRoleComponent
{
/// <summary>
/// For headrevs, how many people you have converted.
/// </summary>
[DataField, AutoNetworkedField]
public uint ConvertedCount = 0;
}