25 lines
766 B
C#
25 lines
766 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
|
|
|
|
namespace Content.Server._Goobstation.Devil.Contract.Revival;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class RevivalContractComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// The entity who signed the paper, AKA, the entity who has the effects applied.
|
|
/// </summary>
|
|
[DataField]
|
|
public EntityUid? Signer;
|
|
|
|
/// <summary>
|
|
/// The entity who created the contract, AKA, the entity who gains the soul.
|
|
/// </summary>
|
|
[DataField]
|
|
public EntityUid? ContractOwner;
|
|
|
|
}
|