Files
Nitrox/NitroxModel/Packets/MutePlayer.cs
2025-07-06 00:23:46 +02:00

17 lines
269 B
C#

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;
}
}