WebGame.Game.ForceEnd C# (CSharp) Méthode

ForceEnd() public méthode

public ForceEnd ( ) : void
Résultat void
        public void ForceEnd()
        {
            //SendForumMessage("Since the turn has not run in over 14 days or there have been over 70 turns the server has forced an end to this game.");

            foreach (var player in (from p in Players where !p.IsEliminated select p))
            {
                EliminatePlayer(player);
            }
        }