mirror of
https://github.com/kwsch/PKHeX
synced 2025-02-17 05:48:44 +00:00
11 lines
156 B
C#
11 lines
156 B
C#
namespace PKHeX.Drawing.Misc;
|
|
|
|
public enum QRDecodeResult
|
|
{
|
|
Success,
|
|
BadPath,
|
|
BadImage,
|
|
BadType,
|
|
BadConnection,
|
|
BadConversion,
|
|
}
|