mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-05-09 00:34:14 +08:00
15 lines
348 B
C#
15 lines
348 B
C#
using BetterGenshinImpact.GameTask.Model;
|
|
using System.Threading;
|
|
|
|
namespace BetterGenshinImpact.GameTask.AutoFight;
|
|
|
|
public class AutoFightParam : BaseTaskParam
|
|
{
|
|
public string CombatStrategyPath { get; set; }
|
|
|
|
public AutoFightParam(CancellationTokenSource cts, string path) : base(cts)
|
|
{
|
|
CombatStrategyPath = path;
|
|
}
|
|
}
|