diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-04-28 13:30:24 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-04-28 13:30:24 -0400 |
commit | a625e9bed71c6398a18ec0f5d41d7f8135660efd (patch) | |
tree | 086b696984187148947a05ba89097d6ca2ead871 /src/SMAPI/IModHelper.cs | |
parent | beb2f9c1484626e03acfecffd0f90cd2cddb8cc6 (diff) | |
download | SMAPI-a625e9bed71c6398a18ec0f5d41d7f8135660efd.tar.gz SMAPI-a625e9bed71c6398a18ec0f5d41d7f8135660efd.tar.bz2 SMAPI-a625e9bed71c6398a18ec0f5d41d7f8135660efd.zip |
add initial multiplayer API (#480)
Diffstat (limited to 'src/SMAPI/IModHelper.cs')
-rw-r--r-- | src/SMAPI/IModHelper.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/SMAPI/IModHelper.cs b/src/SMAPI/IModHelper.cs index e9554fdc..5e39161d 100644 --- a/src/SMAPI/IModHelper.cs +++ b/src/SMAPI/IModHelper.cs @@ -21,6 +21,9 @@ namespace StardewModdingAPI /// <summary>Metadata about loaded mods.</summary> IModRegistry ModRegistry { get; } + /// <summary>Provides multiplayer utilities.</summary> + IMultiplayerHelper Multiplayer { get; } + /// <summary>An API for managing console commands.</summary> ICommandHelper ConsoleCommands { get; } |