first commit
This commit is contained in:
19
NitroxModel/Packets/SubRootChanged.cs
Normal file
19
NitroxModel/Packets/SubRootChanged.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using NitroxModel.DataStructures;
|
||||
using NitroxModel.DataStructures.Util;
|
||||
|
||||
namespace NitroxModel.Packets
|
||||
{
|
||||
[Serializable]
|
||||
public class SubRootChanged : Packet
|
||||
{
|
||||
public ushort PlayerId { get; }
|
||||
public Optional<NitroxId> SubRootId { get; }
|
||||
|
||||
public SubRootChanged(ushort playerId, Optional<NitroxId> subRootId)
|
||||
{
|
||||
PlayerId = playerId;
|
||||
SubRootId = subRootId;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user