Stardew_Valley_Mods/GeneralMods/SimpleSoundManager/SimpleSoundManagerMod.cs

15 lines
272 B
C#
Raw Normal View History

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