GitList
Repositories
Help
Report an Issue
boggleNet
Code
Commits
Branches
Tags
Search
Tree:
645335e
Branches
Tags
master
boggleNet
WordOnBoard.cs
Revert "Removing byte order mark in file using for f in `ls`; do awk '{if(NR==1)sub(/^\xef\xbb\xbf/,"");print}' $f > $f; done"
Dev Ghai
commited
645335e
at 2013-09-23 06:37:32
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; } } }