blob: ac00b9703019f5c4abe58c23c075676ff5f5cd2e (
plain)
1
2
3
4
5
6
7
8
9
|
namespace StardewModdingAPI
{
/// <summary>Provides multiplayer utilities.</summary>
public interface IMultiplayerHelper : IModLinked
{
/// <summary>Get a new multiplayer ID.</summary>
long GetNewID();
}
}
|