first commit
This commit is contained in:
18
NitroxModel/Packets/PlayerDeathEvent.cs
Normal file
18
NitroxModel/Packets/PlayerDeathEvent.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using NitroxModel.DataStructures.Unity;
|
||||
|
||||
namespace NitroxModel.Packets
|
||||
{
|
||||
[Serializable]
|
||||
public class PlayerDeathEvent : Packet
|
||||
{
|
||||
public ushort PlayerId { get; }
|
||||
public NitroxVector3 DeathPosition { get; }
|
||||
|
||||
public PlayerDeathEvent(ushort playerId, NitroxVector3 deathPosition)
|
||||
{
|
||||
PlayerId = playerId;
|
||||
DeathPosition = deathPosition;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user