21 lines
469 B
C#
21 lines
469 B
C#
using System;
|
|
using NitroxModel.DataStructures;
|
|
using NitroxModel.DataStructures.Util;
|
|
|
|
namespace NitroxModel.Packets
|
|
{
|
|
[Serializable]
|
|
public class EscapePodChanged : Packet
|
|
{
|
|
public ushort PlayerId { get; }
|
|
public Optional<NitroxId> EscapePodId { get; }
|
|
|
|
public EscapePodChanged(ushort playerId, Optional<NitroxId> escapePodId)
|
|
{
|
|
PlayerId = playerId;
|
|
EscapePodId = escapePodId;
|
|
}
|
|
}
|
|
}
|
|
|