16 lines
304 B
C#
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;
|
|
}
|
|
}
|