mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 22:40:22 +00:00
21 lines
399 B
C#
21 lines
399 B
C#
|
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,
|
|||
|
}
|
|||
|
}
|