mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
21 lines
932 B
C#
21 lines
932 B
C#
using System;
|
|
using Wabbajack.Paths;
|
|
using Wabbajack.Paths.IO;
|
|
|
|
namespace Wabbajack;
|
|
|
|
public static class Consts
|
|
{
|
|
public static RelativePath MO2IniName = "ModOrganizer.ini".ToRelativePath();
|
|
public static string AppName = "Wabbajack";
|
|
public static Uri WabbajackBuildServerUri => new("https://build.wabbajack.org");
|
|
public static Version CurrentMinimumWabbajackVersion { get; set; } = Version.Parse("2.3.0.0");
|
|
public static bool UseNetworkWorkaroundMode { get; set; } = false;
|
|
public static AbsolutePath CefCacheLocation { get; } = KnownFolders.WabbajackAppLocal.Combine("Cef");
|
|
public static RelativePath ModListTxt { get; } = "modlist.txt".ToRelativePath();
|
|
public static RelativePath CompilerSettings { get; } = "compiler_settings.json".ToRelativePath();
|
|
|
|
public static byte SettingsVersion = 0;
|
|
|
|
public static RelativePath NativeSettingsJson = "native_settings.json".ToRelativePath();
|
|
} |