-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathConst.cs
More file actions
57 lines (50 loc) · 2.13 KB
/
Const.cs
File metadata and controls
57 lines (50 loc) · 2.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
namespace STS2RitsuLib
{
/// <summary>
/// Stable identifiers and version constants for the RitsuLib mod assembly.
/// RitsuLib mod 程序集的稳定标识符和版本常量。
/// </summary>
public static class Const
{
/// <summary>
/// Human-readable mod name.
/// 可读的 mod 名称。
/// </summary>
public const string Name = "RitsuLib";
/// <summary>
/// Unique mod id used by the game and persistence.
/// 游戏和持久化使用的唯一 mod id。
/// </summary>
public const string ModId = "com.ritsukage.sts2-RitsuLib";
/// <summary>
/// Assembly / manifest version string.
/// 程序集/清单版本字符串。
/// </summary>
public const string Version = "0.2.31";
/// <summary>
/// Root key for RitsuLib JSON settings under the mod’s user folder.
/// mod 用户文件夹下 RitsuLib JSON 设置的根键。
/// </summary>
public const string SettingsKey = "settings";
/// <summary>
/// On-disk settings file name.
/// 磁盘上的设置文件名。
/// </summary>
public const string SettingsFileName = "settings.json";
/// <summary>
/// Subdirectory under global mod data for shell theme JSON (next to <see cref="SettingsFileName" />).
/// 全局 mod 数据下用于 shell 主题 JSON 的子目录(与 <see cref="SettingsFileName" /> 相邻)。
/// </summary>
public const string ShellThemesDirectoryName = "shell_themes";
/// <summary>
/// BaseLib main Harmony instance id.
/// BaseLib 主 Harmony 实例 id。
/// </summary>
public const string BaseLibHarmonyId = "BaseLib";
/// <summary>
/// Harmony id used by RitsuLib content-registry patcher.
/// RitsuLib 内容注册表补丁器使用的 Harmony id。
/// </summary>
public const string FrameworkContentRegistryHarmonyId = ModId + ".framework-content-registry";
}
}