first commit
This commit is contained in:
14
NitroxModel/Packets/OrderedBuildPacket.cs
Normal file
14
NitroxModel/Packets/OrderedBuildPacket.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
|
||||
namespace NitroxModel.Packets;
|
||||
|
||||
[Serializable]
|
||||
public abstract class OrderedBuildPacket : Packet
|
||||
{
|
||||
public int OperationId { get; set; }
|
||||
|
||||
protected OrderedBuildPacket(int operationId)
|
||||
{
|
||||
OperationId = operationId;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user