mirror of
https://github.com/space-wizards/space-station-14.git
synced 2026-02-15 03:31:30 +01:00
13 lines
320 B
C#
13 lines
320 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Shuttles.Events;
|
|
|
|
/// <summary>
|
|
/// Raised on the client to request the expected position of the emergency shuttle for debugging.
|
|
/// </summary>
|
|
[Serializable, NetSerializable]
|
|
public sealed class EmergencyShuttleRequestPositionMessage : EntityEventArgs
|
|
{
|
|
|
|
}
|