Files
Nitrox/NitroxModel/Packets/PinMoved.cs
2025-07-06 00:23:46 +02:00

16 lines
282 B
C#

using System;
using System.Collections.Generic;
namespace NitroxModel.Packets;
[Serializable]
public class PinnedRecipeMoved : Packet
{
public List<int> RecipePins { get; }
public PinnedRecipeMoved(List<int> recipePins)
{
RecipePins = recipePins;
}
}