// New Frontiers - This file is licensed under AGPLv3 // Copyright (c) 2024 New Frontiers Contributors // See AGPLv3.txt for details. using Robust.Shared.Serialization; namespace Content.Shared._NF.Shuttles.Events { /// /// Raised on the client when it wishes to change the maximum speed of a ship. /// [Serializable, NetSerializable] public sealed class SetMaxShuttleSpeedRequest : BoundUserInterfaceMessage { public NetEntity? ShuttleEntityUid { get; set; } public float MaxSpeed { get; set; } } }