コード例 #1
0
ファイル: PokemonLobbyClient.cs プロジェクト: sunoru/PBO
 private void OnChallengeAccepted(int userId)
 {
   lock (roomLock)
   {
     ChallengeAccepted(GetUser(userId));
     SingleHost s = new SingleHost(User.Id, currentSettings);///////////
     battleHost = s;
     battleClient = s;
     StartGame(challengingPms);
     challengingPms = null;
   }
 }