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

16 lines
304 B
C#

using System;
using NitroxModel.DataStructures.GameLogic.Entities.Bases;
namespace NitroxModel.Packets;
[Serializable]
public sealed class PlaceGhost : Packet
{
public GhostEntity GhostEntity { get; }
public PlaceGhost(GhostEntity ghostEntity)
{
GhostEntity = ghostEntity;
}
}