public void MakeMap(string filename)
        {
            File = filename;
            BaseForm.LoadGameEvent();

            int col = GameModel.GetColumnCount();
            int row = GameModel.GetRowCount();

            Map = GameModel.CreateMap();
            View.MakeTable(col, row, Map);
        }