Files
crystall-punk-14/Content.Shared/Shuttles/BUIStates/NavBoundUserInterfaceState.cs

18 lines
406 B
C#
Raw Permalink Normal View History

using Robust.Shared.Serialization;
namespace Content.Shared.Shuttles.BUIStates;
/// <summary>
/// Wrapper around <see cref="NavInterfaceState"/>
/// </summary>
[Serializable, NetSerializable]
public sealed class NavBoundUserInterfaceState : BoundUserInterfaceState
{
public NavInterfaceState State;
public NavBoundUserInterfaceState(NavInterfaceState state)
{
State = state;
}
}