fish-station/Content.Server/Shuttles/Events/ShuttleConsoleFTLStartEvent.cs
Morb c99e365ce7
Give nukies the ability to declare war for a TC boost (#19291)
Co-authored-by: Kevin Zheng <kevinz5000@gmail.com>
2023-08-29 23:56:20 -08:00

10 lines
239 B
C#

namespace Content.Server.Shuttles.Events;
/// <summary>
/// Raised when shuttle console approved FTL
/// </summary>
[ByRefEvent]
public record struct ShuttleConsoleFTLTravelStartEvent(EntityUid Uid)
{
public EntityUid Uid = Uid;
}