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

23
mod/Strings.cs Normal file
View File

@@ -0,0 +1,23 @@
namespace PriorityUX {
public static class Strings {
public static class PRIORITYUX {
public static class OPTIONS {
public static class RESETPRIORITY {
public static LocString NAME = "Reset priority";
public static LocString TOOLTIP = "Reset priority every time a tool is opened";
public static LocString CATEGORY = "Tweaks";
}
public static class RESETPRIORITYLEVEL {
public static LocString NAME = "Default priority";
public static LocString TOOLTIP = "Used for reset and as a default priority";
public static LocString CATEGORY = "Tweaks";
}
public static class ENABLEPRIORITYHOTKEYSEVERYWHERE {
public static LocString NAME = "Enable priority keys everywhere";
public static LocString TOOLTIP = "Allows the 1-9 keys to select priority for all tools. Close the tool to open the building menus.";
public static LocString CATEGORY = "Tweaks";
}
}
}
}
}