mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
11 lines
196 B
C#
11 lines
196 B
C#
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// Rules for how <see cref="IContestStats.CNT_Sheen"/> is obtained.
|
|
/// </summary>
|
|
public enum ContestStatGrantingSheen
|
|
{
|
|
Gen3,
|
|
Gen4,
|
|
Gen8b,
|
|
}
|