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

23 lines
420 B
C#
Raw Normal View History

namespace PKHeX.Core;
/// <summary>
/// Status of passing or failing frame match results.
/// </summary>
public enum LockInfo
{
2021-03-14 18:28:46 +00:00
/// <summary>
/// PID matches the required parameters.
2021-03-14 18:28:46 +00:00
/// </summary>
Pass,
/// <summary>
/// PID did not match the required Nature.
/// </summary>
Nature,
/// <summary>
/// PID did not match the required Gender.
/// </summary>
Gender,
}