first commit
This commit is contained in:
18
NitroxModel/Packets/SignalPingVisibilityChanged.cs
Normal file
18
NitroxModel/Packets/SignalPingVisibilityChanged.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
|
||||
namespace NitroxModel.Packets;
|
||||
|
||||
[Serializable]
|
||||
public class SignalPingPreferenceChanged : Packet
|
||||
{
|
||||
public string PingKey { get; }
|
||||
public bool Visible { get; }
|
||||
public int Color { get; }
|
||||
|
||||
public SignalPingPreferenceChanged(string pingKey, bool visible, int color)
|
||||
{
|
||||
PingKey = pingKey;
|
||||
Visible = visible;
|
||||
Color = color;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user