python_notes/Turtle/Drone Invaders/lasercannon.py

16 lines
266 B
Python
Raw Normal View History

from turtle import Turtle
from bomb import Bomb
from pygame import mixer
class LaserCannon(Turtle):
def __init__(self, xMin, xMax, yMin, yMax, screen, scoreboard):
pass
def aim(self, x, y):
pass
def shoot(self):
pass