1 2 3 4 5 6 7 8 9
namespace StardewModdingAPI.Events { /// <summary>Manages access to events raised by SMAPI.</summary> public interface IModEvents { /// <summary>Events raised when something changes in the world.</summary> IWorldEvents World { get; } } }