2022-07-21 16:07:13 -05:00
|
|
|
from turtle import Turtle
|
|
|
|
from bomb import Bomb
|
|
|
|
from pygame import mixer
|
|
|
|
|
2022-07-26 14:12:41 -05:00
|
|
|
|
2022-07-26 14:39:29 -05:00
|
|
|
class Rocket(Turtle):
|
2022-07-21 16:36:45 -05:00
|
|
|
def __init__(self, x_min, x_max, y_min, y_max, screen, scoreboard):
|
2022-07-21 16:07:13 -05:00
|
|
|
pass
|
2022-07-26 14:12:41 -05:00
|
|
|
|
2022-07-21 16:07:13 -05:00
|
|
|
def aim(self, x, y):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def shoot(self):
|
|
|
|
pass
|