mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-23 02:43:13 +00:00
9 lines
161 B
C#
9 lines
161 B
C#
|
namespace PKHeX.Core;
|
|||
|
|
|||
|
public enum EntityCompatibilitySetting
|
|||
|
{
|
|||
|
AllowIncompatibleAll = -1,
|
|||
|
DisallowIncompatible = 0,
|
|||
|
AllowIncompatibleSane = 1,
|
|||
|
}
|