first commit
This commit is contained in:
17
NitroxModel/Packets/BuildingResyncRequest.cs
Normal file
17
NitroxModel/Packets/BuildingResyncRequest.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using NitroxModel.DataStructures;
|
||||
|
||||
namespace NitroxModel.Packets;
|
||||
|
||||
[Serializable]
|
||||
public sealed class BuildingResyncRequest : Packet
|
||||
{
|
||||
public NitroxId EntityId { get; }
|
||||
public bool ResyncEverything { get; }
|
||||
|
||||
public BuildingResyncRequest(NitroxId entityId = null, bool resyncEverything = true)
|
||||
{
|
||||
EntityId = entityId;
|
||||
ResyncEverything = resyncEverything;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user