Implement AutomationBotFactory and UI for Bot selection.

This commit is contained in:
2019-11-01 00:27:57 +01:00
parent 3531b72793
commit 437366fd67
6 changed files with 110 additions and 22 deletions

View File

@@ -4,6 +4,7 @@ namespace VAR.ScreenAutomation.Interfaces
{
public interface IAutomationBot
{
string Name { get; }
void Init(IOutputHandler output);
Bitmap Process(Bitmap bmpInput, IOutputHandler output);
string ResponseKeys();