mirror of
https://github.com/kwsch/pkNX.git
synced 2026-07-13 14:41:28 -05:00
File scoped namespaces for all lib projects netstandard2.0 => net6; now uniform. bye netframework!
20 lines
390 B
C#
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,
|
|
}
|