first commit
This commit is contained in:
15
NitroxModel/Packets/PinMoved.cs
Normal file
15
NitroxModel/Packets/PinMoved.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user