mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 17:18:00 +00:00
52c4fbbe97
Refactored and rearranged things as needed to allow the change
10 lines
185 B
C#
10 lines
185 B
C#
namespace PKHeX.Core
|
|
{
|
|
// Gender Locking
|
|
public class EncounterLock
|
|
{
|
|
public int Species;
|
|
public int Nature = -1;
|
|
public int Gender = -1;
|
|
}
|
|
}
|