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