Files
OCR_Decode/OCR_Decode/DriverGapToLeaderWindow.cs
T

23 lines
524 B
C#

using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OCR_Decode
{
internal class DriverGapToLeaderWindow : Window
{
public DriverGapToLeaderWindow(Bitmap image, Rectangle bounds) : base(image, bounds)
{
Name = "Gap to leader";
}
public override object DecodePng()
{
int result = GetTimeFromPng(WindowImage);
return result;
}
}
}