mirror of
https://github.com/kwsch/PKHeX
synced 2025-01-08 02:28:47 +00: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;
|
|||
|
}
|
|||
|
}
|