19 lines
269 B
Python
19 lines
269 B
Python
|
|
from typing import List
|
||
|
|
from data import Item, Recipes
|
||
|
|
from engine import Graph
|
||
|
|
|
||
|
|
bus_resources = [
|
||
|
|
Item.IronBar,
|
||
|
|
Item.CopperBar,
|
||
|
|
Item.SteelBar,
|
||
|
|
]
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
solutions = Graph.create_graph(10, Recipes.IronPlate).get_solutions()
|
||
|
|
for solution in solutions:
|
||
|
|
solution.draw()
|