18 lines
604 B
C#
18 lines
604 B
C#
// SPDX-FileCopyrightText: 2025 GoobBot <uristmchands@proton.me>
|
|
// SPDX-FileCopyrightText: 2025 Solstice <solsticeofthewinter@gmail.com>
|
|
// SPDX-FileCopyrightText: 2025 SolsticeOfTheWinter <solsticeofthewinter@gmail.com>
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
using Content.Server._Goobstation.Devil.Objectives.Systems;
|
|
|
|
namespace Content.Server._Goobstation.Devil.Objectives.Components;
|
|
|
|
[RegisterComponent, Access(typeof(DevilSystem), typeof(DevilObjectiveSystem))]
|
|
|
|
public sealed partial class SignContractConditionComponent : Component
|
|
{
|
|
[DataField]
|
|
public int ContractsSigned;
|
|
}
|