8 lines
No EOL
215 B
Python
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) |