1
0

RoleBriefingComponent.cs 303 B

12345678910111213
  1. using Content.Shared.Roles;
  2. namespace Content.Server.Roles;
  3. /// <summary>
  4. /// Adds a briefing to the character info menu, does nothing else.
  5. /// </summary>
  6. [RegisterComponent]
  7. public sealed partial class RoleBriefingComponent : BaseMindRoleComponent
  8. {
  9. [DataField]
  10. public string Briefing;
  11. }