using Content.Shared.Shuttles.Components; using Robust.Shared.Serialization; namespace Content.Shared.Shuttles.Events; /// /// Raised by the client to request the server change a particular shuttle's mode. /// [Serializable, NetSerializable] public sealed class ShuttleModeRequestMessage : BoundUserInterfaceMessage { public ShuttleMode Mode; }