6
StarHorizon_Public/Content.Shared/_NF/Shuttles/Events/SetMaxShuttleSpeedRequest.cs
2026-01-24 12:49:55 +03:00

17 lines
566 B
C#

// 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
{
/// <summary>
/// Raised on the client when it wishes to change the maximum speed of a ship.
/// </summary>
[Serializable, NetSerializable]
public sealed class SetMaxShuttleSpeedRequest : BoundUserInterfaceMessage
{
public NetEntity? ShuttleEntityUid { get; set; }
public float MaxSpeed { get; set; }
}
}