圣遗物分解的bugfix和优化 (#2114)

This commit is contained in:
FishmanTheMurloc
2025-08-29 14:50:35 +08:00
committed by GitHub
parent 21ce9912e4
commit 8c85cb90c7
45 changed files with 991 additions and 361 deletions

View File

@@ -3,9 +3,9 @@ using BetterGenshinImpact.GameTask.Model;
namespace BetterGenshinImpact.GameTask.Shell;
public class ShellTaskParam : BaseTaskParam
public class ShellTaskParam : BaseTaskParam<ShellTask>
{
private ShellTaskParam(string command, int configTimeoutSeconds, bool configNoWindow, bool configOutput, bool configDisable)
private ShellTaskParam(string command, int configTimeoutSeconds, bool configNoWindow, bool configOutput, bool configDisable) : base(null, null)
{
Command = command;
TimeoutSeconds = configTimeoutSeconds;