mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-04-12 15:33:32 +08:00
20 lines
464 B
C#
20 lines
464 B
C#
using BetterGenshinImpact.GameTask.Model;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BetterGenshinImpact.GameTask.AutoFight;
|
|
|
|
public class AutoFightParam : BaseTaskParam
|
|
{
|
|
public string CombatStrategyPath { get; set; }
|
|
|
|
public AutoFightParam(CancellationTokenSource cts, string path) : base(cts)
|
|
{
|
|
CombatStrategyPath = path;
|
|
}
|
|
}
|