first commit
This commit is contained in:
18
NitroxModel/Packets/ModuleRemoved.cs
Normal file
18
NitroxModel/Packets/ModuleRemoved.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using NitroxModel.DataStructures;
|
||||
|
||||
namespace NitroxModel.Packets;
|
||||
|
||||
[Serializable]
|
||||
public class ModuleRemoved : Packet
|
||||
{
|
||||
public NitroxId Id { get; }
|
||||
|
||||
public NitroxId NewParentId { get; }
|
||||
|
||||
public ModuleRemoved(NitroxId id, NitroxId newParentId)
|
||||
{
|
||||
Id = id;
|
||||
NewParentId = newParentId;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user