first commit
This commit is contained in:
16
NitroxModel/Packets/MutePlayer.cs
Normal file
16
NitroxModel/Packets/MutePlayer.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
|
||||
namespace NitroxModel.Packets;
|
||||
|
||||
[Serializable]
|
||||
public class MutePlayer : Packet
|
||||
{
|
||||
public ushort PlayerId;
|
||||
public bool Muted;
|
||||
|
||||
public MutePlayer(ushort playerId, bool muted)
|
||||
{
|
||||
PlayerId = playerId;
|
||||
Muted = muted;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user