first commit
This commit is contained in:
20
NitroxModel/Packets/RemoveCreatureCorpse.cs
Normal file
20
NitroxModel/Packets/RemoveCreatureCorpse.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using NitroxModel.DataStructures;
|
||||
using NitroxModel.DataStructures.Unity;
|
||||
|
||||
namespace NitroxModel.Packets;
|
||||
|
||||
[Serializable]
|
||||
public class RemoveCreatureCorpse : Packet
|
||||
{
|
||||
public NitroxId CreatureId { get; }
|
||||
public NitroxVector3 DeathPosition { get; }
|
||||
public NitroxQuaternion DeathRotation { get; }
|
||||
|
||||
public RemoveCreatureCorpse(NitroxId creatureId, NitroxVector3 deathPosition, NitroxQuaternion deathRotation)
|
||||
{
|
||||
CreatureId = creatureId;
|
||||
DeathPosition = deathPosition;
|
||||
DeathRotation = deathRotation;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user