15 lines
272 B
C#
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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|