the-honk/school/a-level/Y13 2021-2023/OOP/Breakout/brick.py
2023-01-26 13:04:21 +00:00

8 lines
No EOL
215 B
Python

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)