GoldbergGUI/GoldbergGUI.Core/Utils/Misc.cs

25 lines
924 B
C#
Raw Normal View History

2021-01-08 12:36:57 -05:00
namespace GoldbergGUI.Core.Utils
{
public static class Misc
{
public const string AlphaNumOnlyRegex = "[^0-9a-zA-Z]+";
}
public class GlobalHelp
2021-01-08 12:36:57 -05:00
{
2021-12-22 07:15:28 -05:00
public static string Header =>
"Information\n";
2021-12-22 07:15:28 -05:00
public static string TextPreLink =>
"Usually these settings are saved under";
public static string Link => "%APPDATA%\\Goldberg SteamEmu Saves\\settings";
2021-12-22 07:15:28 -05:00
public static string TextPostLink =>
", which makes these " +
"available for every game that uses the Goldberg Emulator. However, if you want to set specific settings " +
"for certain games (e.g. different language), you can remove the \"Global\" checkmark next to the option " +
"and then change it. If you want to remove that setting, just empty the field while \"Global\" is " +
"unchecked. (Not implemented yet!)";
2021-01-08 12:36:57 -05:00
}
}