mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 17:18:00 +00:00
3f38b123a3
mostly renaming things, includes a little bit of added sugar and splitting methods to simplify the codebase. all methods are now PascalCase
10 lines
226 B
C#
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;
|
|
}
|
|
}
|