示例#1
0
 public static void onOpponentHasLeftMatch(ulong playerId)
 {
     _syncDelegate.OnOpponentHasLeftMatch(playerId);
 }
示例#2
0
            public void onOpponentHasLeftMatch(long playerId)
            {
                var opponentPlayerId = Convert.ToUInt64(playerId);

                _syncDelegate.OnOpponentHasLeftMatch(opponentPlayerId);
            }
示例#3
0
文件: Api.cs 项目: jclin/FlappyBird
 public static void onOpponentHasLeftMatch(UInt64 playerId)
 {
     _syncMessageHandler.OnOpponentHasLeftMatch(playerId);
 }