mirror of
https://github.com/kwsch/PKHeX
synced 2025-01-10 03:28:50 +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,
|
|
}
|