mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-05-21 09:45:48 +08:00
19 lines
314 B
C#
19 lines
314 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Vision.Recognition.Task
|
|
{
|
|
/// <summary>
|
|
/// 任务上下文
|
|
/// </summary>
|
|
public interface ITaskContext
|
|
{
|
|
|
|
Bitmap Capture();
|
|
}
|
|
}
|