/// <summary>
        /// Determines whether the game is outdated.
        /// </summary>
        /// <returns><c>true</c> if the game is outdated; otherwise, <c>false</c>.</returns>
        public bool IsGameOutdated()
        {
            FTPHandler FTP = new FTPHandler();

            try
            {
                Version local  = Config.GetLocalGameVersion();
                Version remote = FTP.GetRemoteGameVersion(true);

                if (local < remote)
                {
                    return(true);
                }
                else
                {
                    return(false);
                }
            }
            catch (WebException wex)
            {
                Console.WriteLine("WebException in IsGameOutdated(): " + wex.Message);
                return(true);
            }
        }