SMAPI/src/SMAPI.Toolkit.CoreInterfaces/IManifestContentPackFor.cs

13 lines
445 B
C#
Raw Normal View History

2018-02-18 05:34:31 +08:00
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; }
}
}