mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-17 01:28:00 +00:00
6c6b3ae4b6
Add in frametype, rename classes for more coherent structure
20 lines
399 B
C#
20 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,
|
|
}
|
|
}
|