GitList
Repositories
Help
Report an Issue
boggleNet
Code
Commits
Branches
Tags
Search
Tree:
f3e8ffc
Branches
Tags
master
boggleNet
WordOnBoard.cs
First commit
Dev Ghai
commited
f3e8ffc
at 2013-09-23 04:19:43
WordOnBoard.cs
Blame
History
Raw
namespace Boggle { public struct WordOnBoard { public string Word; public int Score; public WordOnBoard(string word, int score) { this.Word = word; this.Score = score; } } }