PKHeX/PKHeX.Core/Legality/Structures/EncounterLock.cs

11 lines
185 B
C#
Raw Normal View History

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