Stardew_Valley_Mods/GeneralMods/SimpleSoundManager/SimpleSoundManagerMod.cs

17 lines
351 B
C#

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