namespace Assets.lib.monolib
{
	public class Session_Cmd
	{
		public const short MAX_SENDMESSAGE = 200;

		public const sbyte GET_KEY = -27;

		public const sbyte PING = -102;

		public const sbyte RECONNECT = -127;

		public static bool isBigMessage(sbyte cmd)
		{
			return cmd == -120 || cmd == -31 || cmd == -41 || cmd == -60 || cmd == -92;
		}
	}
}
