mall-solver/main.py

19 lines
269 B
Python
Raw Normal View History

2023-11-23 01:11:19 -05:00
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()