10 lines
186 B
Python
10 lines
186 B
Python
import pygame
|
|
|
|
'''
|
|
For information on the Tetris piece Tetromino go here:
|
|
https://tetris.fandom.com/wiki/Tetromino
|
|
'''
|
|
class tetromino:
|
|
|
|
def __init__(self):
|
|
pass |