mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
16 lines
532 B
C#
16 lines
532 B
C#
using System;
|
|
using Wabbajack.Paths;
|
|
|
|
namespace Wabbajack;
|
|
|
|
public static class Consts
|
|
{
|
|
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 byte SettingsVersion = 0;
|
|
|
|
public static RelativePath NativeSettingsJson = "native_settings.json".ToRelativePath();
|
|
} |