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