PKHeX/PKHeX.Core/Legality/Structures/EncounterLock.cs
Evan Dixon 52c4fbbe97 Converted PKHeX.Core to .Net Standard
Refactored and rearranged things as needed to allow the change
2017-05-11 23:34:18 -05:00

10 lines
185 B
C#

namespace PKHeX.Core
{
// Gender Locking
public class EncounterLock
{
public int Species;
public int Nature = -1;
public int Gender = -1;
}
}