PKHeX/PKHeX.Core/Legality/RNG/Frame/LockInfo.cs
Kurt 6c6b3ae4b6 Refactoring
Add in frametype, rename classes for more coherent structure
2017-05-14 14:42:18 -07:00

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,
}
}