mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-23 10:53:10 +00:00
ce935edcdf
no functional change
16 lines
336 B
C#
16 lines
336 B
C#
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// Indicates the result of an entity conversion attempt.
|
|
/// </summary>
|
|
public enum EntityConverterResult
|
|
{
|
|
None,
|
|
Success,
|
|
SuccessIncompatibleManual,
|
|
SuccessIncompatibleReflection,
|
|
IncompatibleForm,
|
|
NoTransferRoute,
|
|
IncompatibleSpecies,
|
|
IncompatibleLanguageGB,
|
|
}
|