using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Boggle { /// /// Supported lists. /// public enum SupportedLists { /// /// Scrabble dictionary for USA, Canada and Thailand /// TWS, /// /// Scrabble dictionary used world wide except in USA, Canada and Thailand. /// //SOWPODS, /// /// A huge dictionary found on official Internet Scrabble Club's website (http://www.isc.ro/en/commands/lists.html) /// ZINGARELLI } }