8 lines
225 B
Python
8 lines
225 B
Python
class Road:
|
|
def __init__(self, coordinates):
|
|
self.coordinates = coordinates # List of tuples (x1, y1, z1) in order
|
|
self.road_type = road_type # 'road', 'highway'
|
|
|
|
def place_roads(self):
|
|
pass
|