//--------------------------------------
//          Dom Framework
//
//        For documentation or 
//    if you have any issues, visit
//         wrench.kulestar.com
//
//    Copyright  2013 Kulestar Ltd
//          www.kulestar.com
//--------------------------------------

namespace Dom{
	
	/// <summary>
	/// Enables player gender specific text, for example he or she.
	/// This represents a particular gender.
	/// </summary>
	
	public enum WhitespaceMode{
		/// <summary>Whitespaces are preserved in the output.</summary>
		Preserve,
		/// <summary>Sequences of spaces will be collapsed into one.</summary>
		Normal
	}
	
}