blob: 52ac8f1ccd36f7bc870e01f3bcf8429300eb8910 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
namespace StardewModdingAPI
{
/// <summary>Indicates which mod can read the content pack represented by the containing manifest.</summary>
public interface IManifestContentPackFor
{
/// <summary>The unique ID of the mod which can read this content pack.</summary>
string UniqueID { get; }
/// <summary>The minimum required version (if any).</summary>
ISemanticVersion? MinimumVersion { get; }
}
}
|