namespace StardewModdingAPI.Framework.ModLoading { /// Indicates the status of a mod's metadata resolution. internal enum ModMetadataStatus { /// The mod has been found, but hasn't been processed yet. Found, /// The mod cannot be loaded. Failed } }