1
0

SharedGatewayGeneratorSystem.cs 288 B

123456789101112
  1. using Robust.Shared.Serialization;
  2. namespace Content.Shared.Gateway;
  3. /// <summary>
  4. /// Sent from client to server upon taking a gateway destination.
  5. /// </summary>
  6. [Serializable, NetSerializable]
  7. public sealed class GatewayDestinationMessage : EntityEventArgs
  8. {
  9. public int Index;
  10. }