the-honk/school/a-level/Y13 2021-2023/OOP/Breakout/brick.py
2024-10-09 18:02:48 +01: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)