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