using Content.Server.Objectives.Systems;
namespace Content.Server.Objectives.Components;
///
/// An objective that is set to complete by code in another system.
/// Use to check and set this.
///
[RegisterComponent, Access(typeof(CodeConditionSystem))]
public sealed partial class CodeConditionComponent : Component
{
///
/// Whether the objective is complete or not.
///
[DataField]
public bool Completed;
}