blob: 5cdf489f583b040b29e852eb9de8f44d1b3412a4 (
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
28
29
30
|
namespace StardewModdingAPI.Toolkit.Framework.Clients.Wiki
{
/// <summary>The compatibility status for a mod.</summary>
public enum WikiCompatibilityStatus
{
/// <summary>The status is unknown.</summary>
Unknown,
/// <summary>The mod is compatible.</summary>
Ok,
/// <summary>The mod is compatible if you use an optional official download.</summary>
Optional,
/// <summary>The mod is compatible if you use an unofficial update.</summary>
Unofficial,
/// <summary>The mod isn't compatible, but the player can fix it or there's a good alternative.</summary>
Workaround,
/// <summary>The mod isn't compatible.</summary>
Broken,
/// <summary>The mod is no longer maintained by the author, and an unofficial update or continuation is unlikely.</summary>
Abandoned,
/// <summary>The mod is no longer needed and should be removed.</summary>
Obsolete
}
}
|