public bool NewGame()
        {
            Suspend(true);

            RunningSquare.ResetAllCases();

            Suspend(false);

            File.AppendAllText(@GlobalFile.Log, DateTime.Now.ToString() + "\t *** New Game ***" + Environment.NewLine);

            return(true);
        }
        public void Start(string pathFile)
        {
            try
            {
//                File.Delete(@GlobalFile.Log);

// Replace les pièces au départ
                if (ToolBoard.isBoardConfig())
                {
                    RunningSquare.ResetAllCases();
                    File.AppendAllText(@GlobalFile.Log, DateTime.Now.ToString() + "\t *** New Game ***" + Environment.NewLine);
                }
                else
                {
                    // Cré l'échiquier
                    ToolBoard.CreateBoard(pathFile);
                    RunningSquare.InitRunning();
                }
            }
            catch (Exception)
            {
            }
        }