add commented-out toString() for debugging

This commit is contained in:
Eric House 2012-06-05 07:41:00 -07:00 committed by Eric House
parent d7f576d6b7
commit 1e9928e7f3

View file

@ -30,4 +30,18 @@ public class BoardDims {
public int trayTop, trayHt;
public int cellSize, maxCellSize;
public int timerWidth;
// public String toString()
// {
// return "width: " + width
// + " height: " + height
// + " left: " + left
// + " top: " + top
// + " scoreHt: " + scoreHt
// + " boardHt: " + boardHt
// + " trayTop: " + trayTop
// + " trayHt: " + trayHt
// + " cellSize: " + cellSize
// + " maxCellSize: " + maxCellSize;
// }
}