blob: 81978bef6692f79bfdd9bca1977191ec3895ca6b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#nullable disable
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; }
}
}
|