Example #1
0
 def __init__(self, battle):
     """ Builds the Battle View with the Battle """
     PygameScreen.__init__(self)
     self.opponentView = OpponentSideView(battle.oppSide, self.width,
                                          self.height * .35)
     self.playerView = PlayerSideView(battle.playerSide, self.width,
                                      self.height * .35)
     self.bottomView = None
     self.battle = battle