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
|
|
{
|
|
|
|
}
|