mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-04-25 08:10:48 -05:00
11 lines
185 B
C#
11 lines
185 B
C#
namespace PKHeX.Core
|
|
{
|
|
// Gender Locking
|
|
public class EncounterLock
|
|
{
|
|
public int Species;
|
|
public int Nature = -1;
|
|
public int Gender = -1;
|
|
}
|
|
}
|