Exemplo n.º 1
0
 /// <summary>
 /// Drop the users current challenge. Resets everything in the database and in the program.
 /// </summary>
 public void DropCurrentChallenge()
 {
     Debug.WriteLine("Before resetting " + CurrentChallenge.Challenge.Name);
     connectToDatabase.DropCurrentChallenge(Username, CurrentChallenge.Challenge.Name);
     CurrentChallenge = null;
 }