18 lines
377 B
C#
18 lines
377 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 DriverPositionWindow : Window
|
|
{
|
|
public DriverPositionWindow(Bitmap fullImage, Rectangle bounds) : base(fullImage, bounds)
|
|
{
|
|
Name = "Position";
|
|
}
|
|
}
|
|
}
|