blob: 7c5b8b980743013bf91ceb643e8fdd6c200d58cf (
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 Message11KickPlayerC2S
{
public static void Serialize(IMessageWriter writer)
{
throw new System.NotImplementedException();
}
public static void Deserialize(IMessageReader reader, out int playerId, out bool isBan)
{
playerId = reader.ReadPackedInt32();
isBan = reader.ReadBoolean();
}
}
}
|