From 9bb268a08288820d0acb5a1f089515a31f7dd030 Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Sun, 24 Jun 2018 16:03:23 -0400 Subject: fix input API not exposed through helper --- src/SMAPI/IModHelper.cs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src') diff --git a/src/SMAPI/IModHelper.cs b/src/SMAPI/IModHelper.cs index 68c2f1c4..d7b8c986 100644 --- a/src/SMAPI/IModHelper.cs +++ b/src/SMAPI/IModHelper.cs @@ -20,6 +20,9 @@ namespace StardewModdingAPI /// An API for loading content assets. IContentHelper Content { get; } + /// An API for checking and changing input state. + IInputHelper Input { get; } + /// Simplifies access to private game code. IReflectionHelper Reflection { get; } -- cgit