6
StarHorizon_Public/Content.Shared/Gateway/SharedGatewayGeneratorSystem.cs
2025-08-05 10:00:54 +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;
}