Ejemplo n.º 1
0
        // Update scoreboard
        private void DispatcherTimer_Tick(object sender, EventArgs e)
        {
            //dispatcherTimer = sender as System.Windows.Threading.DispatcherTimer;
            TimerCount++;
            if (TimerCount % 5 == 0)
            {
                SetPlayers();

                // Check if winner needs to be implemented
                wordInstance.CheckPlayerStatus();
            }
        }