Initial commit

This commit is contained in:
2022-12-30 00:58:33 +01:00
commit 3f1075e67f
176 changed files with 25715 additions and 0 deletions

28
mod/Options.cs Normal file
View File

@@ -0,0 +1,28 @@
using Newtonsoft.Json;
using PeterHan.PLib.Options;
namespace PriorityUX {
[ModInfo("tdrz.nl")]
class Options : SingletonOptions<Options> {
[Option]
[JsonProperty]
public bool resetPriority { get; set; } = false;
[Option]
[Limit(1.0, 9.0)]
[JsonProperty]
public int resetPriorityLevel { get; set; } = 3;
[Option]
[JsonProperty]
public bool enableKeysForAllTools { get; set; } = true;
[Option]
[JsonProperty]
public bool enableKeysForBuilding { get; set; } = true;
[Option]
[JsonProperty]
public bool deconstructInheritPriority { get; set; } = true;
}
}