21 lines
521 B
C#
21 lines
521 B
C#
using System;
|
|
using NitroxModel.DataStructures;
|
|
|
|
namespace NitroxModel.Packets
|
|
{
|
|
[Serializable]
|
|
public class SimulationOwnershipResponse : Packet
|
|
{
|
|
public NitroxId Id { get; }
|
|
public bool LockAcquired { get; }
|
|
public SimulationLockType LockType { get; }
|
|
|
|
public SimulationOwnershipResponse(NitroxId id, bool lockAcquired, SimulationLockType lockType)
|
|
{
|
|
Id = id;
|
|
LockAcquired = lockAcquired;
|
|
LockType = lockType;
|
|
}
|
|
}
|
|
}
|