boss ready

This commit is contained in:
Boki 2026-02-21 15:44:22 -05:00
parent 89c3a0a077
commit 64a6ab694b
21 changed files with 857 additions and 249 deletions

View file

@ -46,6 +46,7 @@ public class BotOrchestrator : IAsyncDisposable
public EnemyDetector EnemyDetector { get; }
public BossDetector BossDetector { get; }
public FrameSaver FrameSaver { get; }
public LootDebugDetector LootDebugDetector { get; }
public BossRunExecutor BossRunExecutor { get; }
private readonly Dictionary<string, ScrapExecutor> _scrapExecutors = new();
@ -77,6 +78,7 @@ public class BotOrchestrator : IAsyncDisposable
EnemyDetector.Enabled = true;
BossDetector = new BossDetector();
FrameSaver = new FrameSaver();
LootDebugDetector = new LootDebugDetector(screen);
// Register on shared pipeline
pipelineService.Pipeline.AddConsumer(minimapCapture);