13 lines
274 B
C#
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;
|
|
}
|