first commit
This commit is contained in:
18
NitroxModel/Packets/WeldAction.cs
Normal file
18
NitroxModel/Packets/WeldAction.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using NitroxModel.DataStructures;
|
||||
|
||||
namespace NitroxModel.Packets
|
||||
{
|
||||
[Serializable]
|
||||
public class WeldAction : Packet
|
||||
{
|
||||
public NitroxId Id { get; }
|
||||
public float HealthAdded { get; }
|
||||
|
||||
public WeldAction(NitroxId id, float healthAdded)
|
||||
{
|
||||
Id = id;
|
||||
HealthAdded = healthAdded;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user