Füge Arme und Beine hinzu
This commit is contained in:
@@ -9,6 +9,10 @@ class AreaNames(enum.Enum):
|
||||
MIDDLE_TORSO = 'Torso Mitte'
|
||||
RIGHT_TORSO = 'Rechter Torso'
|
||||
LEFT_TORSO = 'Linker Torso'
|
||||
RIGHT_LEG = 'Rechtes Bein'
|
||||
RIGHT_ARM = 'Rechter Arm'
|
||||
LEFT_LEG = 'Linkes Bein'
|
||||
LEFT_ARM = 'Linker Arm'
|
||||
|
||||
|
||||
|
||||
@@ -37,7 +41,9 @@ class Area:
|
||||
_content: dict[str, Any]
|
||||
|
||||
def __init__(self):
|
||||
self.__dict__['_content'] = {}
|
||||
self.__dict__['_content'] = {
|
||||
'children': []
|
||||
}
|
||||
|
||||
def __setattr__(self, key, value):
|
||||
self.__dict__['_content'][key] = value
|
||||
|
||||
Reference in New Issue
Block a user