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

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;
}
}