Files
OCR_TEST/OCR_tester/DriverGapToLeaderWindow.cs
T

19 lines
387 B
C#

using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OCR_tester
{
internal class DriverGapToLeaderWindow : Window
{
public DriverGapToLeaderWindow(Bitmap fullImage, Rectangle bounds) : base(fullImage, bounds)
{
Name = "GapToLeader";
}
}
}