public Game()
 {
     _players = new Dictionary<string, Player>();
     _activePlayer = new ActivePlayer();
     _playerQueue = new Queue<Player>();
 }
        private void endGame()
        {
            Irc.Output(Irc.getChannel(), ".win " + _players.ToArray()[0].Value.Name);

            _totalPlayers = 0;
            _activePlayer = new ActivePlayer();
            _players.Clear();
            _playerQueue.Clear();
            Property.resetAll();
            UnhandledDebtList.clearAllDebt();
            GetOutOfJailFreeCard.ChanceOwner = null;

            _started = false;
        }