Initial commit

This commit is contained in:
2019-11-01 00:01:42 +01:00
commit 3531b72793
22 changed files with 1471 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
using System.Drawing;
using VAR.ScreenAutomation.Interfaces;
namespace VAR.ScreenAutomation.Bots
{
public class DummyBot : IAutomationBot
{
private int frameCount = 0;
public void Init(IOutputHandler output)
{
frameCount = 0;
output.Clean();
}
public Bitmap Process(Bitmap bmpInput, IOutputHandler output)
{
frameCount++;
output.AddLine(string.Format("Frame: {0}", frameCount));
return bmpInput;
}
public string ResponseKeys()
{
return "{UP}";
}
}
}