NAK_CVR_Mods/PhysicsGunMod/ModSettings.cs
2024-01-22 21:53:03 -06:00

12 lines
No EOL
337 B
C#

using MelonLoader;
namespace NAK.PhysicsGunMod;
internal static class ModSettings
{
internal const string ModName = nameof(PhysicsGunMod);
internal const string ASM_SettingsCategory = "Physics Gun Mod";
private static readonly MelonPreferences_Category Category =
MelonPreferences.CreateCategory(ModName);
}