aboutsummaryrefslogtreecommitdiff
path: root/renderer.py
blob: bda7f00619792cdb28e7a88bad07ca6f54fd3a48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
  
  """
  renderScore
  @param score -- int representing the score of the player
  @param board index -- 0 for the left board, 1 for the right board.
  """
  def renderScore(score, boardIndex):
    raise NotImplementedError