[PhysicsGunMod] PhysGun test

This commit is contained in:
NotAKidoS 2024-01-22 21:53:03 -06:00
parent 7e1445912d
commit d155ea546e
10 changed files with 862 additions and 0 deletions

View file

@ -0,0 +1,12 @@
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);
}