blob: ab65f7b40952fb9f4a0b06381547b3f4ca1476a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
namespace StardewModdingAPI.Framework.ModLoading
{
/// <summary>Indicates the status of a mod's metadata resolution.</summary>
internal enum ModMetadataStatus
{
/// <summary>The mod has been found, but hasn't been processed yet.</summary>
Found,
/// <summary>The mod cannot be loaded.</summary>
Failed
}
}
|