namespace StardewModdingAPI.Framework.Models
{
/// Indicates how SMAPI should treat a mod.
internal enum ModStatus
{
/// Don't override the status.
None,
/// The mod is obsolete and shouldn't be used, regardless of version.
Obsolete,
/// Assume the mod is not compatible, even if SMAPI doesn't detect any incompatible code.
AssumeBroken,
/// Assume the mod is compatible, even if SMAPI detects incompatible code.
AssumeCompatible
}
}