mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 13:03:06 +00:00
12 lines
188 B
C#
12 lines
188 B
C#
|
namespace PKHeX.Drawing
|
|||
|
{
|
|||
|
public enum QRDecodeResult
|
|||
|
{
|
|||
|
Success,
|
|||
|
BadPath,
|
|||
|
BadImage,
|
|||
|
BadType,
|
|||
|
BadConnection,
|
|||
|
BadConversion,
|
|||
|
}
|
|||
|
}
|