pkNX/pkNX.Structures/Encounter/Shiny.cs
Kurt 2578ba073c Refactoring
File scoped namespaces for all lib projects
netstandard2.0 => net6; now uniform. bye netframework!
2022-10-01 17:08:17 -07:00

20 lines
390 B
C#

namespace pkNX.Structures;
public enum Shiny : byte
{
/// <summary>
/// PID is purely random; can be shiny or not shiny.
/// </summary>
Random = 0,
/// <summary>
/// PID is randomly created and forced to be shiny.
/// </summary>
Always = 1,
/// <summary>
/// PID is randomly created and forced to be not shiny.
/// </summary>
Never = 2,
}