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

18 lines
413 B
C#

using Robust.Shared.Serialization;
namespace Content.Shared._NF.Shipyard.Events;
/// <summary>
/// Purchase a Vessel from the console
/// </summary>
[Serializable, NetSerializable]
public sealed class ShipyardConsolePurchaseMessage : BoundUserInterfaceMessage
{
public string Vessel; //vessel prototype ID
public ShipyardConsolePurchaseMessage(string vessel)
{
Vessel = vessel;
}
}