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