Пример #1
0
 public void Test_getLeaderBoard_WithValidValue(string world, string chap, string difficulty)
 {
     crudscore.getLeaderBoard(world, chap, difficulty, CallBackFunction_WithTrue);
 }
 public void getLeaderBoard(string world, string chap, string difficulty)
 {
     Debug.Log("Get leaderboard scores");
     Debug.Log("Call Score manager to get data");
     crudscore.getLeaderBoard(world, chap, difficulty, printSuccessMsg);
 }
 public void Preformancetest_getLeaderBoard(string world, string chap, string difficulty)
 {
     Debug.Log("Calling getLeaderBoard at: " + System.DateTime.Now);
     crudscore.getLeaderBoard(world, chap, difficulty, printgetLeaderBoardTime);
 }