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

16 lines
285 B
C#

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