got detection somewhat working

This commit is contained in:
Boki 2026-02-20 21:57:51 -05:00
parent 40d30115bf
commit c75b2b27f0
10 changed files with 500 additions and 56 deletions

View file

@ -15,7 +15,8 @@ public record DetectedBoss(
string ClassName,
float Confidence,
int X, int Y, int Width, int Height,
int Cx, int Cy);
int Cx, int Cy,
float VxPerMs = 0, float VyPerMs = 0);
public record BossSnapshot(
IReadOnlyList<DetectedBoss> Bosses,