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

16 lines
291 B
C#

using System;
using NitroxModel.DataStructures;
namespace NitroxModel.Packets;
[Serializable]
public class PlayerUnseeOutOfCellEntity : Packet
{
public NitroxId EntityId { get; set; }
public PlayerUnseeOutOfCellEntity(NitroxId entityId)
{
EntityId = entityId;
}
}