work on navigation

This commit is contained in:
Boki 2026-02-13 11:23:30 -05:00
parent 468e0a7246
commit 802f1030d5
12 changed files with 582 additions and 64 deletions

View file

@ -0,0 +1,9 @@
using OpenCvSharp;
using Region = Poe2Trade.Core.Region;
namespace Poe2Trade.Navigation;
public interface IScreenCapture : IDisposable
{
Mat? CaptureRegion(Region region);
}