aboutsummaryrefslogtreecommitdiff
path: root/renderer.py
blob: a720786880a9afbb4472f1b9e4d52918b88dc093 (plain)
1
2
3
4
5
6
7
8
9
class Renderer(object):
  """
  renderBoard
  @param gameBoard -- dictionary of tuples of location (x,y), 0 indexed from
  the top left of the board.
  @param boardIndex -- 0 for the left board, 1 for the right board.
  """
  def renderBoard(gameBoard, boardIndex):
    raise NotImplementedError