* add mining points * add claim points button to oreproc * funny * its over * :trollface: * xml fail Signed-off-by: deltanedas <39013340+deltanedas@users.noreply.github.com> --------- Signed-off-by: deltanedas <39013340+deltanedas@users.noreply.github.com> Co-authored-by: deltanedas <@deltanedas:kde.org>
10 lines
295 B
C#
10 lines
295 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.DeltaV.Salvage;
|
|
|
|
/// <summary>
|
|
/// Message for a lathe to transfer its mining points to the user's id card.
|
|
/// </summary>
|
|
[Serializable, NetSerializable]
|
|
public sealed class LatheClaimMiningPointsMessage : BoundUserInterfaceMessage;
|