hc99's picture
Add files using upload-large-folder tool
2c3c408 verified
raw
history blame
173 Bytes
from enum import Enum
class DrawStyle(Enum):
NONE = "none"
ASCII = "ascii"
SQUARE = "square"
HEAVY = "heavy"
ROUNDED = "rounded"
DOUBLE = "double"