first commit
This commit is contained in:
20
NitroxModel/Packets/EscapePodChanged.cs
Normal file
20
NitroxModel/Packets/EscapePodChanged.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user