namespace Content.Shared._CP14.Demiplane.Components;
///
/// A station component that stores information about the current map of demiplanes, their research status and relationships.
///
[RegisterComponent]
public sealed partial class CP14StationDemiplaneMapComponent : Component
{
[DataField]
public Dictionary Nodes = new();
///
/// Connections between rooms. Order matters! The first element is the start, the second is the end.
///
[DataField]
public HashSet<(Vector2i, Vector2i)> Edges = new();
[DataField]
public HashSet GeneratedNodes = new();
[DataField]
public int TotalCount = 15;
}