17 lines
284 B
C#
17 lines
284 B
C#
using System;
|
|
|
|
namespace NitroxModel.Packets;
|
|
|
|
[Serializable]
|
|
public class RecipePinned : Packet
|
|
{
|
|
public int TechType { get; }
|
|
public bool Pinned { get; }
|
|
|
|
public RecipePinned(int techType, bool pinned)
|
|
{
|
|
TechType = techType;
|
|
Pinned = pinned;
|
|
}
|
|
}
|