using System; namespace StardewModdingAPI.Events { public static class MineEvents { public static event EventHandler MineLevelChanged = delegate { }; public static void InvokeLocationsChanged(int currentMineLevel) { } } }