mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-05-17 09:26:50 +08:00
23 lines
486 B
C#
23 lines
486 B
C#
using System.Drawing;
|
|
using Vision.Recognition.Task;
|
|
|
|
namespace BGI.AutoSkip
|
|
{
|
|
/// <summary>
|
|
/// 先不用插件化的模式
|
|
/// </summary>
|
|
public class AutoSkipTrigger
|
|
{
|
|
public bool IsEnabled { get; private set; }
|
|
public void Init(ITaskContext context)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void OnCapture(Bitmap bitmap)
|
|
{
|
|
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
} |