20 lines
625 B
C#
20 lines
625 B
C#
// New Frontiers - This file is licensed under AGPLv3
|
|
// Copyright (c) 2024 New Frontiers Contributors
|
|
// See AGPLv3.txt for details.
|
|
|
|
using Content.Shared.Shuttles.Components;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared._NF.Shuttles.Events
|
|
{
|
|
/// <summary>
|
|
/// Raised on the client when it wishes to change the inertial dampening of a ship.
|
|
/// </summary>
|
|
[Serializable, NetSerializable]
|
|
public sealed class SetServiceFlagsRequest : BoundUserInterfaceMessage
|
|
{
|
|
public NetEntity? ShuttleEntityUid { get; set; }
|
|
public ServiceFlags ServiceFlags { get; set; }
|
|
}
|
|
}
|