refactor
This commit is contained in:
parent
2d6a6bd3a1
commit
d80e723b94
28 changed files with 1801 additions and 352 deletions
12
src/Poe2Trade.Screen/DetectionTypes.cs
Normal file
12
src/Poe2Trade.Screen/DetectionTypes.cs
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
namespace Poe2Trade.Screen;
|
||||
|
||||
public record DetectedEnemy(
|
||||
float Confidence,
|
||||
int X, int Y, int Width, int Height,
|
||||
int Cx, int Cy,
|
||||
bool HealthBarConfirmed);
|
||||
|
||||
public record DetectionSnapshot(
|
||||
IReadOnlyList<DetectedEnemy> Enemies,
|
||||
long Timestamp,
|
||||
float InferenceMs);
|
||||
Loading…
Add table
Add a link
Reference in a new issue