20 lines
456 B
C#
20 lines
456 B
C#
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;
|
|
}
|
|
}
|
|
}
|