mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-05-29 10:25:50 +08:00
关联实际触发器对象的代码清理
This commit is contained in:
17
BetterGenshinImpact/Service/GearTask/Model/GearTaskPaths.cs
Normal file
17
BetterGenshinImpact/Service/GearTask/Model/GearTaskPaths.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System.IO;
|
||||
using BetterGenshinImpact.Core.Config;
|
||||
|
||||
namespace BetterGenshinImpact.Service.GearTask.Model;
|
||||
|
||||
/// <summary>
|
||||
/// 存储定义任务的路径信息
|
||||
/// </summary>
|
||||
public class GearTaskPaths
|
||||
{
|
||||
private static readonly string TaskV2Path = Path.Combine(Global.Absolute("User"), "task_v2");
|
||||
|
||||
public static readonly string TaskListPath = Path.Combine(TaskV2Path, "list");
|
||||
|
||||
public static readonly string TaskTriggerPath = Path.Combine(TaskV2Path, "trigger");
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user