first commit
This commit is contained in:
18
NitroxModel/Packets/BaseDeconstructed.cs
Normal file
18
NitroxModel/Packets/BaseDeconstructed.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using NitroxModel.DataStructures;
|
||||
using NitroxModel.DataStructures.GameLogic.Entities.Bases;
|
||||
|
||||
namespace NitroxModel.Packets;
|
||||
|
||||
[Serializable]
|
||||
public sealed class BaseDeconstructed : Packet
|
||||
{
|
||||
public NitroxId FormerBaseId { get; }
|
||||
public GhostEntity ReplacerGhost { get; }
|
||||
|
||||
public BaseDeconstructed(NitroxId formerBaseId, GhostEntity replacerGhost)
|
||||
{
|
||||
FormerBaseId = formerBaseId;
|
||||
ReplacerGhost = replacerGhost;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user