19 lines
667 B
C#
19 lines
667 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.Contract;
|
|
using Content.Server._Goobstation.Devil.Objectives.Systems;
|
|
|
|
namespace Content.Server._Goobstation.Devil.Objectives.Components;
|
|
|
|
[RegisterComponent, Access(typeof(DevilContractSystem), typeof(DevilObjectiveSystem))]
|
|
|
|
public sealed partial class MeetContractWeightConditionComponent : Component
|
|
{
|
|
[DataField]
|
|
public int ContractWeight;
|
|
}
|