Ver.0.3.0.33
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user