namespace StardewModdingAPI.Toolkit.Framework.ModScanning { /// Indicates why a mod could not be parsed. public enum ModParseError { /// No parse error. None, /// The folder is empty or contains only ignored files. EmptyFolder, /// The folder is an empty folder managed by Vortex. EmptyVortexFolder, /// The folder is ignored by convention. IgnoredFolder, /// The mod's manifest.json could not be parsed. ManifestInvalid, /// The folder contains non-ignored and non-XNB files, but none of them are manifest.json. ManifestMissing, /// The folder is an XNB mod, which can't be loaded through SMAPI. XnbMod } }