Exemplo n.º 1
0
 /// <summary>
 /// Adds the score based on current game configuration and the time it took to complete level
 /// </summary>
 /// <param name="time">Time.</param>
 public void AddScore(System.TimeSpan time)
 {
     Debug.Log("Wanting To Add Score With Time: " + time.Minutes + ":" + time.Seconds);
     pss.AddScore(difficulty, levelSize, movingWalls, time);
 }