mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-06-02 10:55:48 +08:00
18 lines
386 B
C#
18 lines
386 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using Vision.Recognition.Task;
|
|
|
|
namespace BetterGenshinImpact.GameTask.AutoFishing
|
|
{
|
|
public class AutoThrowRodTask : BaseTaskThread
|
|
{
|
|
public AutoThrowRodTask(CancellationTokenSource cts) : base(cts)
|
|
{
|
|
}
|
|
}
|
|
}
|