6
StarHorizon_Public/Content.Shared/_DV/CustomObjectiveSummary/CustomObjectiveSummaryComponent.cs
2025-11-15 12:24:44 +03:00

17 lines
508 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared._DV.CustomObjectiveSummary;
/// <summary>
/// Put on a players mind if the wrote a custom summary for their objectives.
/// </summary>
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
public sealed partial class CustomObjectiveSummaryComponent : Component
{
/// <summary>
/// What the player wrote as their summary!
/// </summary>
[DataField, AutoNetworkedField]
public string ObjectiveSummary = "";
}