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

20 lines
449 B
C#

using System;
using NitroxModel.DataStructures;
namespace NitroxModel.Packets;
[Serializable]
public class LeakRepaired : Packet
{
public NitroxId BaseId { get; set; }
public NitroxId LeakId { get; set; }
public NitroxInt3 RelativeCell { get; set; }
public LeakRepaired(NitroxId baseId, NitroxId leakId, NitroxInt3 relativeCell)
{
BaseId = baseId;
LeakId = leakId;
RelativeCell = relativeCell;
}
}