12 lines
309 B
C#
12 lines
309 B
C#
|
|
namespace Content.Server.Roles;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Adds a briefing to the character info menu, does nothing else.
|
|||
|
|
/// </summary>
|
|||
|
|
[RegisterComponent]
|
|||
|
|
public sealed partial class RoleBriefingComponent : Component
|
|||
|
|
{
|
|||
|
|
[DataField("briefing"), ViewVariables(VVAccess.ReadWrite)]
|
|||
|
|
public string Briefing;
|
|||
|
|
}
|