SMAPI/StardewModdingAPI/Events/Mine.cs

15 lines
319 B
C#
Raw Normal View History

2016-03-27 06:27:07 +08:00
using System;
namespace StardewModdingAPI.Events
{
public static class MineEvents
{
2016-03-27 06:27:07 +08:00
public static event EventHandler<EventArgsCurrentLocationChanged> MineLevelChanged = delegate { };
public static void InvokeLocationsChanged(int currentMineLevel)
{
}
}
}