Add dev instructions

This commit is contained in:
2024-04-20 15:48:32 +02:00
parent aaf72e7806
commit 4e80fc3791
4 changed files with 93 additions and 9 deletions

7
networks/roads/road.py Normal file
View File

@@ -0,0 +1,7 @@
class Road:
def __init__(self, coordinates, road_type):
self.coordinates = coordinates # List of tuples (x1, y1, z1) in order
self.road_type = road_type # 'road', 'highway'
def place_roads(self):
pass