from turtle import Turtle from bomb import Bomb from pygame import mixer class Rocket(Turtle): def __init__(self, x_min, x_max, y_min, y_max, screen, scoreboard): pass def aim(self, x, y): pass def shoot(self): pass