6
StarHorizon_Public/Content.Shared/Salvage/Magnet/MagnetClaimOfferEvent.cs
2025-12-18 02:55:17 +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;
}