6
StarHorizon_Public/Content.Shared/Gateway/SharedGatewayGeneratorSystem.cs
2026-01-24 12:49:55 +03:00

13 lines
288 B
C#

using Robust.Shared.Serialization;
namespace Content.Shared.Gateway;
/// <summary>
/// Sent from client to server upon taking a gateway destination.
/// </summary>
[Serializable, NetSerializable]
public sealed class GatewayDestinationMessage : EntityEventArgs
{
public int Index;
}