mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-05-25 10:05:49 +08:00
24 lines
929 B
C#
24 lines
929 B
C#
using BetterGenshinImpact.GameTask.Model;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace BetterGenshinImpact.GameTask.AutoFishing
|
|
{
|
|
public class AutoFishingTaskParam : BaseTaskParam
|
|
{
|
|
public AutoFishingTaskParam(int wholeProcessTimeoutSeconds, int throwRodTimeOutTimeoutSeconds, FishingTimePolicy fishingTimePolicy, bool saveScreenshotOnKeyTick)
|
|
{
|
|
WholeProcessTimeoutSeconds = wholeProcessTimeoutSeconds;
|
|
ThrowRodTimeOutTimeoutSeconds = throwRodTimeOutTimeoutSeconds;
|
|
FishingTimePolicy = fishingTimePolicy;
|
|
SaveScreenshotOnKeyTick = saveScreenshotOnKeyTick;
|
|
}
|
|
|
|
public int WholeProcessTimeoutSeconds { get; set; }
|
|
public int ThrowRodTimeOutTimeoutSeconds { get; set; }
|
|
public FishingTimePolicy FishingTimePolicy { get; set; }
|
|
public bool SaveScreenshotOnKeyTick { get; set; }
|
|
}
|
|
}
|