20 lines
557 B
C#
20 lines
557 B
C#
|
|
using Content.Server._CP14.DemiplaneTraveling;
|
||
|
|
|
||
|
|
namespace Content.Server._CP14.Demiplane.Components;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Demiplane Core - stores a position on the demiplane map to mark it as “passed” when all conditions are met
|
||
|
|
/// </summary>
|
||
|
|
[RegisterComponent, Access(typeof(CP14DemiplaneSystem), typeof(CP14StationDemiplaneMapSystem))]
|
||
|
|
public sealed partial class CP14DemiplaneCoreComponent : Component
|
||
|
|
{
|
||
|
|
[DataField]
|
||
|
|
public EntityUid? Demiplane;
|
||
|
|
|
||
|
|
[DataField]
|
||
|
|
public EntityUid? Station;
|
||
|
|
|
||
|
|
[DataField]
|
||
|
|
public Vector2i Position;
|
||
|
|
}
|