blob: ebb1140e25a7fdea53939b0af2476bf3ac6ce18e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
namespace StardewModdingAPI
{
/// <summary>A mod dependency listed in a mod manifest.</summary>
public interface IManifestDependency
{
/*********
** Accessors
*********/
/// <summary>The unique mod ID to require.</summary>
string UniqueID { get; }
/// <summary>The minimum required version (if any).</summary>
ISemanticVersion MinimumVersion { get; }
}
}
|