MikuSB.Loader

This commit is contained in:
Kei-Luna
2026-05-13 07:19:45 +09:00
parent e92b214161
commit d9b16fb55d
13 changed files with 466 additions and 275 deletions

View File

@@ -90,6 +90,7 @@ public class CommandTextEN
public GirlTextEN Girl { get; } = new();
public GiveAllTextEN GiveAll { get; } = new();
public DebugTextEN Debug { get; } = new();
public GameCommandTextEN Game { get; } = new();
}
#endregion
@@ -238,6 +239,14 @@ public class DebugTextEN
public string FileDisabled => "Personal debug file output disabled.";
}
public class GameCommandTextEN
{
public string Desc => "Launch the configured game with patch injection";
public string Usage => "Usage: /game [extra game args]";
public string Started => "Game launched. PID: {0}";
public string Failed => "Failed to launch game: {0}";
}
#endregion
#endregion
#endregion