6
StarHorizon_Public/Content.Shared/Salvage/Magnet/MagnetClaimOfferEvent.cs
2026-01-24 12:49:55 +03:00

13 lines
274 B
C#

using Robust.Shared.Serialization;
namespace Content.Shared.Salvage.Magnet;
/// <summary>
/// Claim an offer from the magnet UI.
/// </summary>
[Serializable, NetSerializable]
public sealed class MagnetClaimOfferEvent : BoundUserInterfaceMessage
{
public int Index;
}