www.pudn.com > sudoku.rar > ConfigurationOptions.cs


//-------------------------------------------------------------------------- 
//  
//  Copyright (c) Microsoft Corporation.  All rights reserved.  
//  
//  File: ConfigurationOptions.cs 
// 
//  Description: User options for game play 
//  
//-------------------------------------------------------------------------- 
 
using System; 
 
namespace Microsoft.Sudoku 
{ 
	/// Used for saving and restoring configuration options. 
	[Serializable] 
	internal class ConfigurationOptions 
	{ 
		/// Whether easy cells will be suggested to the user. 
		public bool SuggestEasyCells; 
		/// Whether incorrect values in cells will be pointed out to the user. 
		public bool ShowIncorrectCells = true; 
		/// Whether new puzzles should be created with guaranteed symmetry. 
		public bool CreatePuzzlesWithSymmetry = true; 
		/// Whether users want to be given the option to save their puzzles when they're being overriden. 
		public bool PromptOnPuzzleDelete = true; 
	} 
}