2022-07-21 16:07:13 -05:00
|
|
|
from boundedturtle import BoundedTurtle
|
|
|
|
import math
|
|
|
|
from drone import Drone
|
|
|
|
from pygame import mixer
|
|
|
|
|
2022-07-26 14:12:41 -05:00
|
|
|
|
2022-07-21 16:07:13 -05:00
|
|
|
class Bomb(BoundedTurtle):
|
2022-07-26 14:12:41 -05:00
|
|
|
def __init__(self, init_heading, speed, x_min, x_max, y_min, y_max, scoreboard):
|
2022-07-21 16:07:13 -05:00
|
|
|
pass
|
|
|
|
|
|
|
|
def move(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def distance(self, other):
|
|
|
|
p1 = self.position()
|
|
|
|
p2 = other.position()
|
|
|
|
return math.dist(p1, p2)
|
|
|
|
|
|
|
|
def remove(self):
|
|
|
|
pass
|