Files
OCR_TEST/OCR_tester/DriverDrsWindow.cs
T

18 lines
362 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 DriverDrsWindow : Window
{
public DriverDrsWindow(Bitmap fullImage, Rectangle bounds) : base(fullImage, bounds)
{
Name = "Drs";
}
}
}