Files
better-genshin-impact/BetterGenshinImpact/GameTask/AutoSkip/AutoSkipConfig.cs
2023-10-05 22:18:04 +08:00

31 lines
831 B
C#

using CommunityToolkit.Mvvm.ComponentModel;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BetterGenshinImpact.GameTask.AutoSkip
{
/// <summary>
/// 自动跳过剧情配置
/// </summary>
[Serializable]
public partial class AutoSkipConfig : ObservableObject
{
/// <summary>
/// 触发器是否启用
/// 启用后:
/// 1. 快速跳过对话
/// 2. 自动点击一个识别到的选项
/// 3. 黑屏过长自动点击跳过
/// </summary>
[ObservableProperty] private bool _enabled = true;
/// <summary>
/// 快速跳过对话
/// </summary>
[ObservableProperty] private bool _quicklySkipConversationsEnabled = true;
}
}