18 lines
406 B
C#
18 lines
406 B
C#
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;
|
|
}
|
|
}
|