Stardew_Valley_Mods/SimpleSoundManager/SimpleSoundManagerMod.cs

15 lines
272 B
C#

using StardewModdingAPI;
namespace SimpleSoundManager
{
public class SimpleSoundManagerMod : Mod
{
internal static IModHelper ModHelper;
public override void Entry(IModHelper helper)
{
ModHelper = helper;
}
}
}