Ver.0.3.0.33

This commit is contained in:
2025-07-08 08:32:46 +00:00
parent 99f4dd67c2
commit 0ad5e29917
6831 changed files with 695623 additions and 234455 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);
}
}
}