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

16 lines
262 B
C#

using System;
using NitroxModel.DataStructures;
namespace NitroxModel.Packets;
[Serializable]
public class ClearPlanter : Packet
{
public NitroxId PlanterId { get; }
public ClearPlanter(NitroxId planterId)
{
PlanterId = planterId;
}
}