first commit
This commit is contained in:
17
NitroxModel/Packets/ModifyConstructedAmount.cs
Normal file
17
NitroxModel/Packets/ModifyConstructedAmount.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using NitroxModel.DataStructures;
|
||||
|
||||
namespace NitroxModel.Packets;
|
||||
|
||||
[Serializable]
|
||||
public sealed class ModifyConstructedAmount : Packet
|
||||
{
|
||||
public NitroxId GhostId { get; }
|
||||
public float ConstructedAmount { get; }
|
||||
|
||||
public ModifyConstructedAmount(NitroxId ghostId, float constructedAmount)
|
||||
{
|
||||
GhostId = ghostId;
|
||||
ConstructedAmount = constructedAmount;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user