JobRoleComponent.cs 288 B

123456789101112
  1. using Robust.Shared.GameStates;
  2. namespace Content.Shared.Roles.Jobs;
  3. /// <summary>
  4. /// Added to mind role entities to mark them as a job role entity.
  5. /// </summary>
  6. [RegisterComponent, NetworkedComponent]
  7. public sealed partial class JobRoleComponent : BaseMindRoleComponent
  8. {
  9. }