mirror of
https://github.com/NotAKidoS/NAK_CVR_Mods.git
synced 2025-09-02 22:39:22 +00:00
major cleanup
This commit is contained in:
parent
b33e15377f
commit
e5242f76c7
85 changed files with 584 additions and 571 deletions
|
@ -2,17 +2,19 @@
|
|||
|
||||
namespace NAK.FuckToes;
|
||||
|
||||
public class FuckToesMod : MelonMod
|
||||
public class FuckToes : MelonMod
|
||||
{
|
||||
internal const string SettingsCategory = "FuckToes";
|
||||
internal static MelonPreferences_Category m_categoryFuckToes;
|
||||
internal static MelonPreferences_Entry<bool> m_entryEnabledVR, m_entryEnabledFBT;
|
||||
public static readonly MelonPreferences_Category Category =
|
||||
MelonPreferences.CreateCategory(nameof(FuckToes));
|
||||
|
||||
public static readonly MelonPreferences_Entry<bool> EntryEnabledVR =
|
||||
Category.CreateEntry("Enabled", true, "Nuke VRIK toes when in Halfbody.");
|
||||
|
||||
public static readonly MelonPreferences_Entry<bool> EntryEnabledFBT =
|
||||
Category.CreateEntry("Enabled in FBT", false, "Nuke VRIK toes when in FBT.");
|
||||
|
||||
public override void OnInitializeMelon()
|
||||
{
|
||||
m_categoryFuckToes = MelonPreferences.CreateCategory(SettingsCategory);
|
||||
m_entryEnabledVR = m_categoryFuckToes.CreateEntry<bool>("Enabled", true, description: "Nuke VRIK toes when in Halfbody.");
|
||||
m_entryEnabledFBT = m_categoryFuckToes.CreateEntry<bool>("Enabled in FBT", false, description: "Nuke VRIK toes when in FBT.");
|
||||
|
||||
//Apply patches (i stole)
|
||||
ApplyPatches(typeof(HarmonyPatches.VRIKPatches));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue