summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2018-06-24 16:03:23 -0400
committerJesse Plamondon-Willard <github@jplamondonw.com>2018-06-24 16:03:23 -0400
commit9bb268a08288820d0acb5a1f089515a31f7dd030 (patch)
tree753c8e66ad62411d85dd44ef79abcbf0a7b2caf7 /src
parentaf92f2dc13c9a259c25a15d9bdfb80d73a0bec83 (diff)
downloadSMAPI-9bb268a08288820d0acb5a1f089515a31f7dd030.tar.gz
SMAPI-9bb268a08288820d0acb5a1f089515a31f7dd030.tar.bz2
SMAPI-9bb268a08288820d0acb5a1f089515a31f7dd030.zip
fix input API not exposed through helper
Diffstat (limited to 'src')
-rw-r--r--src/SMAPI/IModHelper.cs3
1 files changed, 3 insertions, 0 deletions
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
/// <summary>An API for loading content assets.</summary>
IContentHelper Content { get; }
+ /// <summary>An API for checking and changing input state.</summary>
+ IInputHelper Input { get; }
+
/// <summary>Simplifies access to private game code.</summary>
IReflectionHelper Reflection { get; }