1
0
mirror of https://github.com/soarqin/DSP_Mods.git synced 2025-12-09 15:33:31 +08:00

CheatEnabler v2.2.0

This commit is contained in:
2023-09-19 23:12:45 +08:00
parent 103309df6d
commit 1cb9cb8e96
9 changed files with 1386 additions and 978 deletions

View File

@@ -5,7 +5,7 @@ using HarmonyLib;
namespace CheatEnabler;
public class I18N
public static class I18N
{
private static bool _initialized;
@@ -15,6 +15,8 @@ public class I18N
{
Harmony.CreateAndPatchAll(typeof(I18N));
}
public static bool Initialized() => _initialized;
private static int _nextID = 1;
private static readonly List<StringProto> StringsToAdd = new();
public static void Add(string key, string enus, string zhcn = null, string frfr = null)