(self, pos)
| 71 | return False |
| 72 | |
| 73 | def hit_bat2(self, pos): |
| 74 | bat_pos = (self.bat_2.curx, self.bat_2.cury) |
| 75 | if pos[0] >= bat_pos[0] and pos[0] <= bat_pos[0]+BAT_SIZE[0]: |
| 76 | if bat_pos[1] <= pos[1] <= bat_pos[1]+BAT_SIZE[1]: |
| 77 | return True |
| 78 | return False |
| 79 | |
| 80 | def draw(self): |
| 81 | self.curx += self.x |