blob: 1b2b0b5514b6f9dc06bf1a03fa380f595fbc68f9 (
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
}
}
|