Exemplo n.º 1
0
        private void _onPlayFail(byte[] buffer)
        {
            Packet.Server.PlayFail pfp = new Packet.Server.PlayFail();
            pfp.Parse(buffer);

            if (PlayFail != null)
            {
                PlayFail(pfp.Reason);
            }
        }
Exemplo n.º 2
0
		private void _onPlayFail(byte[] buffer)
		{
			Packet.Server.PlayFail pfp = new Packet.Server.PlayFail();
			pfp.Parse(buffer);

			if (PlayFail != null)
				PlayFail(pfp.Reason);
		}