mirror of
https://github.com/kwsch/PKHeX
synced 2025-01-09 02:58:47 +00:00
14 lines
249 B
C#
14 lines
249 B
C#
|
namespace PKHeX.Core;
|
|||
|
|
|||
|
public enum EntityConverterResult
|
|||
|
{
|
|||
|
None,
|
|||
|
Success,
|
|||
|
SuccessIncompatibleManual,
|
|||
|
SuccessIncompatibleReflection,
|
|||
|
IncompatibleForm,
|
|||
|
NoTransferRoute,
|
|||
|
IncompatibleSpecies,
|
|||
|
IncompatibleLanguageGB,
|
|||
|
}
|