blob: 005408b1ef9c4df6fd7d698f1568178b4c210e4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
namespace StardewModdingAPI
{
/// <summary>Metadata about a mod installed by a connected player.</summary>
public interface IMultiplayerPeerMod
{
/// <summary>The mod's display name.</summary>
string Name { get; }
/// <summary>The unique mod ID.</summary>
string ID { get; }
/// <summary>The mod version.</summary>
ISemanticVersion Version { get; }
}
}
|