mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-18 08:23:12 +00:00
12 lines
196 B
C#
12 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,
|
|||
|
}
|