增加高亮功能

This commit is contained in:
2025-04-02 18:28:34 +08:00
parent 8fb3940158
commit 2c46185f49
26 changed files with 1197 additions and 13124 deletions
@@ -0,0 +1,17 @@
namespace AibisDream.Utility
{
public static class GlobalVariableKit
{
public static bool IsPlugHighLight
{
get => !(StorageSystem.Instance.TryGetValue("$global.IsPlugHighLight", out bool res) && res);
set => StorageSystem.Instance.SetValue("$global.IsPlugHighLight", !value);
}
public static bool IsCordHighLight
{
get => !(StorageSystem.Instance.TryGetValue("$global.IsCurdHighLight", out bool res) && res);
set => StorageSystem.Instance.SetValue("$global.IsCurdHighLight", !value);
}
}
}