16 lines
282 B
C#
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;
|
|
}
|
|
}
|