added multiple selection and corresponding features

This commit is contained in:
2024-07-01 12:57:10 +02:00
parent c09db757bc
commit df8198ef94
4 changed files with 159 additions and 41 deletions

View File

@@ -1,5 +1,6 @@
class Node:
def __init__(self, x: int, z: int, name: str):
def __init__(self, x: int, z: int, name: str, index: int):
self.x: int = x
self.z: int = z
self.index: int = index
self.name: str = name