Esempio n. 1
0
 public void RemoveWordFromPlay(WordComponent go, bool completed)
 {
     if (ActiveWords.Contains(go) == false)
     {
         Debug.LogError("Trying to remove a word from play, that isn't in play!");
         return;
     }
     if (completed)
     {
         st.ChangeWordsTyped(1);
     }
     ActiveWords.Remove(go);
 }