first commit
This commit is contained in:
19
NitroxModel/Packets/LeakRepaired.cs
Normal file
19
NitroxModel/Packets/LeakRepaired.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user