namespace StardewModdingAPI.Events { /// Manages access to events raised by SMAPI. public interface IModEvents { /// Events raised when the player provides input using a controller, keyboard, or mouse. IInputEvents Input { get; } /// Events raised when something changes in the world. IWorldEvents World { get; } } }