MagnetClaimOfferEvent.cs 274 B

123456789101112
  1. using Robust.Shared.Serialization;
  2. namespace Content.Shared.Salvage.Magnet;
  3. /// <summary>
  4. /// Claim an offer from the magnet UI.
  5. /// </summary>
  6. [Serializable, NetSerializable]
  7. public sealed class MagnetClaimOfferEvent : BoundUserInterfaceMessage
  8. {
  9. public int Index;
  10. }