GitList
Repositories
Help
Report an Issue
boggleNet
Code
Commits
Branches
Tags
Search
Tree:
1b3f85f
Branches
Tags
master
boggleNet
WordOnBoard.cs
Removing byte order mark using sed -i '1 s/^\xef\xbb\xbf//' *.cs
Dev Ghai
commited
1b3f85f
at 2013-09-23 06:42:21
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; } } }