Beispiel #1
0
        public void UpdateTime(float time)
        {
            if (time < 0.0f)
            {
                time = 0.0f;
            }

            timeController.UpdateTextContent(time.ToString("0.00"));
        }
Beispiel #2
0
 public void HealthUpdate(int health)
 {
     healthController.UpdateTextContent(health + "");
 }
Beispiel #3
0
 public void UpdateShowingWord( )
 {
     lettersRight = 0;
     textController.UpdateTextContent(words[wordsGoneThrough]);
     wordsGoneThrough++;
 }