summaryrefslogtreecommitdiff
path: root/src/StardewModdingAPI.Toolkit/Framework/Clients/Wiki/WikiCompatibilityStatus.cs
blob: a1d2dfae57a256f28a313335d09578f58ac10f79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
namespace StardewModdingAPI.Toolkit.Framework.Clients.Wiki
{
    /// <summary>The compatibility status for a mod.</summary>
    public enum WikiCompatibilityStatus
    {
        /// <summary>The mod is compatible.</summary>
        Ok = 0,

        /// <summary>The mod is compatible if you use an optional official download.</summary>
        Optional = 1,

        /// <summary>The mod is compatible if you use an unofficial update.</summary>
        Unofficial = 2,

        /// <summary>The mod isn't compatible, but the player can fix it or there's a good alternative.</summary>
        Workaround = 3,

        /// <summary>The mod isn't compatible.</summary>
        Broken = 4,

        /// <summary>The mod is no longer maintained by the author, and an unofficial update or continuation is unlikely.</summary>
        Abandoned = 5,

        /// <summary>The mod is no longer needed and should be removed.</summary>
        Obsolete = 6
    }
}