public Eye(IntPtr handle) { _numberDetector = new NumberDetector(handle); _cardDetector = new CardDetector(handle); _turnDetector = new RoundDetector(handle); _count = new PlayerCount(handle); }
public NumberDetector(IntPtr pokerHandle) { _pokerHandle = pokerHandle; _turnDetect = new RoundDetector(pokerHandle); _api.Init(Patagames.Ocr.Enums.Languages.English); }