14 lines
401 B
C#
14 lines
401 B
C#
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.Roles.Components;
|
|
|
|
/// <summary>
|
|
/// Adds a briefing to the character info menu, does nothing else.
|
|
/// </summary>
|
|
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
|
|
public sealed partial class RoleBriefingComponent : BaseMindRoleComponent
|
|
{
|
|
[DataField(required: true), AutoNetworkedField]
|
|
public LocId Briefing;
|
|
}
|