This commit is contained in:
Boki 2026-02-26 22:22:33 -05:00
parent 657d307485
commit 566dae8997
6 changed files with 72 additions and 60 deletions

View file

@ -19,6 +19,7 @@ public interface IInventoryManager
Task<bool> WaitForAreaTransition(int timeoutMs, Func<Task>? triggerAction = null);
Task<(int X, int Y)?> FindAndClickNameplate(string name, int maxRetries = 3, int retryDelayMs = 1000, System.Drawing.Rectangle? scanRegion = null, string? savePath = null);
Task DepositItemsToStash(List<PlacedItem> items);
Task DepositAllToOpenStash();
Task<bool> SalvageItems(List<PlacedItem> items);
Task<bool> IdentifyItems();
(bool[,] Grid, List<PlacedItem> Items, int Free) GetInventoryState();