summaryrefslogtreecommitdiff
path: root/Impostor-dev/src/Impostor.Api/Net/Messages/C2S/Message04RemovePlayerC2S.cs
blob: 99cdcfa7f207713365614a6d5698b64980d54806 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
namespace Impostor.Api.Net.Messages.C2S
{
    public class Message04RemovePlayerC2S
    {
        public static void Serialize(IMessageWriter writer)
        {
            throw new System.NotImplementedException();
        }

        public static void Deserialize(IMessageReader reader, out int playerId, out byte reason)
        {
            playerId = reader.ReadPackedInt32();
            reason = reader.ReadByte();
        }
    }
}