mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-03-15 07:43:20 +08:00
13 lines
290 B
C#
13 lines
290 B
C#
using BetterGenshinImpact.GameTask.AutoTrackPath;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BetterGenshinImpact.Core.Script.Dependence;
|
|
|
|
public class Genshin
|
|
{
|
|
public async Task Tp(double x, double y)
|
|
{
|
|
await new TpTask(CancellationContext.Instance.Cts).Tp(x, y);
|
|
}
|
|
}
|