6
2025-08-05 10:00:54 +03:00

15 lines
421 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared._NF.GridAccess;
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
public sealed partial class GridAccessComponent : Component
{
/// <summary>
/// Frontier - Grid access
/// The uid to which this device is limited to be used on.
/// </summary>
[DataField, AutoNetworkedField]
public EntityUid? LinkedShuttleUid = null;
}