6 lines
64 B
Python
6 lines
64 B
Python
from enum import Enum
|
|
|
|
|
|
class Shape(Enum):
|
|
VERTICAL_GLIDER = 1
|