mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 04:53:08 +00:00
23 lines
494 B
C#
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,
|
|
}
|
|
}
|