PKHeX/PKHeX.Core/Legality/Structures/EncounterLock.cs
Kurt 3f38b123a3 Refactoring
mostly renaming things, includes a little bit of added sugar and
splitting methods to simplify the codebase.

all methods are now PascalCase
2017-06-17 18:37:19 -07:00

10 lines
226 B
C#

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