summaryrefslogtreecommitdiff
path: root/Impostor-dev/src/Impostor.Api/Net/Messages/MessageFlags.cs
blob: aea0c60dbe48390a89ead7c7399cd16788297a21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
namespace Impostor.Api.Net.Messages
{
    public static class MessageFlags
    {
        public const byte HostGame = 0;
        public const byte JoinGame = 1;
        public const byte StartGame = 2;
        public const byte RemoveGame = 3;
        public const byte RemovePlayer = 4;
        public const byte GameData = 5;
        public const byte GameDataTo = 6;
        public const byte JoinedGame = 7;
        public const byte EndGame = 8;
        public const byte AlterGame = 10;
        public const byte KickPlayer = 11;
        public const byte WaitForHost = 12;
        public const byte Redirect = 13;
        public const byte ReselectServer = 14;
        public const byte GetGameList = 9;
        public const byte GetGameListV2 = 16;
    }
}