namespace Content.Server.Gateway.Components;
///
/// Destination created by
///
[RegisterComponent]
public sealed partial class GatewayGeneratorDestinationComponent : Component
{
///
/// Generator that created this destination.
///
[DataField]
public EntityUid Generator;
///
/// Is the map locked from being used still or unlocked.
/// Used in conjunction with the attached generator's NextUnlock.
///
[DataField]
public bool Locked = true;
[DataField]
public bool Loaded;
///
/// Seed used for this destination.
///
[DataField]
public int Seed;
///
/// Origin of the gateway.
///
[DataField]
public Vector2i Origin;
}