From 5a2755bfcc516345800a4e9b966a0aff435215b8 Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Thu, 10 May 2018 00:01:24 -0400 Subject: fix multiplayer.GetActiveLocations not added to interface (#480) --- src/SMAPI/IMultiplayerHelper.cs | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src') diff --git a/src/SMAPI/IMultiplayerHelper.cs b/src/SMAPI/IMultiplayerHelper.cs index ac00b970..43a0ac95 100644 --- a/src/SMAPI/IMultiplayerHelper.cs +++ b/src/SMAPI/IMultiplayerHelper.cs @@ -1,3 +1,6 @@ +using System.Collections.Generic; +using StardewValley; + namespace StardewModdingAPI { /// Provides multiplayer utilities. @@ -5,5 +8,8 @@ namespace StardewModdingAPI { /// Get a new multiplayer ID. long GetNewID(); + + /// Get the locations which are being actively synced from the host. + IEnumerable GetActiveLocations(); } } -- cgit