using System.Collections.Generic; using StardewValley; namespace StardewModdingAPI { /// Provides multiplayer utilities. public interface IMultiplayerHelper : IModLinked { /// Get a new multiplayer ID. long GetNewID(); /// Get the locations which are being actively synced from the host. IEnumerable GetActiveLocations(); } }