Files
Nitrox/NitroxModel/Packets/BaseDeconstructed.cs
2025-07-06 00:23:46 +02:00

19 lines
462 B
C#

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;
}
}