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