Create even more objects

This commit is contained in:
2024-06-11 01:57:42 +02:00
parent 0c18414176
commit a50fc34ed2
5 changed files with 208 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
from enum import Enum
class LINE_OVERLAP(Enum):
NONE = 0
MAJOR = 1
MINOR = 2
class LINE_THICKNESS_MODE(Enum):
MIDDLE = 0
DRAW_COUNTERCLOCKWISE = 1
DRAW_CLOCKWISE = 2