namespace StardewModdingAPI.Events { /// Manages access to events raised by SMAPI. public interface IModEvents { /// Events raised when something changes in the world. IWorldEvents World { get; } } }