mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-05-15 09:17:13 +08:00
10 lines
196 B
C#
10 lines
196 B
C#
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BetterGenshinImpact.GameTask.AutoPathing.Handler;
|
|
|
|
public interface IActionHandler
|
|
{
|
|
Task RunAsync(CancellationToken ct);
|
|
}
|