/** * HexBoard--board for playing the game Hex * * @author Phill Conrad, and (insert your name here) * @version lab04 for CS56, Spring 2011 * @see HexBoardTest */ public class HexBoard { /** Constructor @param size size of the hexboard (e.g. 3 for 3x3 board) */ private int size; public HexBoard(int size) { this.size = size; } public String toString() { return "Stub!"; } }