PKHeX/PKHeX.Core/Legality/RNG/Frame/LockInfo.cs

21 lines
399 B
C#
Raw Normal View History

namespace PKHeX.Core
{
public enum LockInfo
{
/// <summary>
/// PID matches the required parameters.
/// </summary>
Pass,
/// <summary>
/// PID did not match the required Nature.
/// </summary>
Nature,
/// <summary>
/// PID did not match the required Gender.
/// </summary>
Gender,
}
}