13 lines
222 B
Python
13 lines
222 B
Python
import pygame
|
|
|
|
'''
|
|
For information on the Tetris piece Tetromino go here:
|
|
https://tetris.fandom.com/wiki/Tetromino
|
|
'''
|
|
class Piece:
|
|
|
|
def __init__(self):
|
|
pass
|
|
|
|
def draw(screen):
|
|
pass |