mirror of
https://github.com/NotAKidoS/NAK_CVR_Mods.git
synced 2025-09-02 22:39:22 +00:00
GrabbableSteeringWheel: commit
This commit is contained in:
parent
39da88d3d3
commit
3a00ff104a
9 changed files with 825 additions and 0 deletions
24
GrabbableSteeringWheel/ModSettings.cs
Normal file
24
GrabbableSteeringWheel/ModSettings.cs
Normal file
|
@ -0,0 +1,24 @@
|
|||
using MelonLoader;
|
||||
|
||||
namespace NAK.GrabbableSteeringWheel;
|
||||
|
||||
internal static class ModSettings
|
||||
{
|
||||
#region Constants
|
||||
|
||||
internal const string ModName = nameof(GrabbableSteeringWheel);
|
||||
// internal const string LCM_SettingsCategory = "Legacy Content Mitigation";
|
||||
|
||||
#endregion Constants
|
||||
|
||||
#region Melon Preferences
|
||||
|
||||
private static readonly MelonPreferences_Category Category =
|
||||
MelonPreferences.CreateCategory(ModName);
|
||||
|
||||
// internal static readonly MelonPreferences_Entry<bool> EntryAutoForLegacyWorlds =
|
||||
// Category.CreateEntry("auto_for_legacy_worlds", true,
|
||||
// "Auto For Legacy Worlds", description: "Should Legacy View be auto enabled for detected Legacy worlds?");
|
||||
//
|
||||
#endregion Melon Preferences
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue