GitList
Repositories
Help
Report an Issue
boggleNet
Code
Commits
Branches
Tags
Search
Tree:
f3e8ffc
Branches
Tags
master
boggleNet
ListWord.cs
First commit
Dev Ghai
commited
f3e8ffc
at 2013-09-23 04:19:43
ListWord.cs
Blame
History
Raw
using System.Collections.Generic; namespace Boggle { public class ListWord { public bool IsWord; public Dictionary<string, ListWord> Next; public ListWord() { this.IsWord = false; this.Next = null; } public ListWord(bool isWord) { this.IsWord = isWord; this.Next = null; } public ListWord(bool isWord, Dictionary<string, ListWord> next) { this.IsWord = isWord; this.Next = next; } } }