PKHeX/PKHeX.Core/Legality/RNG/Frame/LockInfo.cs
2021-03-14 11:28:46 -07:00

23 lines
494 B
C#

namespace PKHeX.Core
{
/// <summary>
/// Status of passing or failing frame match results.
/// </summary>
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,
}
}