mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-06-17 10:19:11 -05: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,
|
|
}
|