mirror of
https://github.com/kristoferssolo/Tetris.git
synced 2025-10-21 20:00:35 +00:00
14 lines
159 B
Python
14 lines
159 B
Python
from enum import Enum
|
|
|
|
|
|
class Direction(Enum):
|
|
LEFT = -1
|
|
RIGHT = 1
|
|
DOWN = 1
|
|
UP = -1
|
|
|
|
|
|
class Field(Enum):
|
|
EMPTY = None
|
|
FILLED = "Block"
|