This commit is contained in:
HolographicHat
2022-06-13 17:43:02 +08:00
parent e847d4c80e
commit bbe7c2cd03
6 changed files with 145 additions and 13 deletions

View File

@@ -1,8 +1,18 @@
namespace YaeAchievement;
using System.Diagnostics.CodeAnalysis;
namespace YaeAchievement;
[SuppressMessage("Usage", "CA2211:非常量字段应当不可见")]
[SuppressMessage("ReSharper", "ConvertToConstant.Global")]
[SuppressMessage("ReSharper", "FieldCanBeMadeReadOnly.Global")]
public static class GlobalVars {
public static bool Verbose = false;
public const string LibName = "YaeAchievementLib.dll";
public const string PipeName = "YaeAchievementPipe";
public static bool UnexpectedExit = true;
public static string GamePath = "";
public const string LibName = "YaeLib.dll";
public const string PipeName = "YaeAchievementPipe";
public const string ConfigFileName = "YaeAchievement.runtimeconfig.json";
}