the-honk/school/a-level/Y13 2021-2023/OOP/Breakout/brick.py

8 lines
215 B
Python
Raw Normal View History

2024-10-09 17:02:48 +00:00
import pygame
from element import Element
BLACK = (0, 0, 0)
class Brick(Element):
def __init__(self, width, height, startPosition, colour):
super().__init__(width, height, startPosition, colour)