기믹 추가 내용 정리
다시 몇 가지 기믹을 추가하는데 성공하였다. 아래는 그러한 기믹들의 내용과 구현 방법에 대한 정리이다. class ConnectGimmick(GimmickStrategy): def __init__(self): self.collision_point_list = [] def apply(self, ball, border, game): for point in self.collision_point_list: pygame.draw.line(game.screen, ball.color, (int(point.x), int(point.y)), ball.position, 2) def add(self, ball, border, game): direction = ball.position - border.center distan..