Remove ITaskConfig

This commit is contained in:
huiyadanli 2023-10-05 22:18:04 +08:00
parent f1b26f4d70
commit 6bde44ea39
4 changed files with 3 additions and 15 deletions

View File

@ -8,7 +8,7 @@ namespace BetterGenshinImpact.GameTask.AutoFishing
/// 自动钓鱼配置
/// </summary>
[Serializable]
public partial class AutoFishingConfig : ObservableObject, ITaskConfig
public partial class AutoFishingConfig : ObservableObject
{
/// <summary>
/// 触发器是否启用

View File

@ -8,7 +8,7 @@ using System.Threading.Tasks;
namespace BetterGenshinImpact.GameTask.AutoPick
{
[Serializable]
public partial class AutoPickConfig : ObservableObject, ITaskConfig
public partial class AutoPickConfig : ObservableObject
{
/// <summary>
/// 触发器是否启用

View File

@ -11,7 +11,7 @@ namespace BetterGenshinImpact.GameTask.AutoSkip
/// 自动跳过剧情配置
/// </summary>
[Serializable]
public partial class AutoSkipConfig : ObservableObject, ITaskConfig
public partial class AutoSkipConfig : ObservableObject
{
/// <summary>
/// 触发器是否启用

View File

@ -1,12 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BetterGenshinImpact.GameTask
{
public class TaskConfig
{
}
}