mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-10 06:34:19 +00:00
aa968f56aa
Extract color util to separate class as it's not entirely image related.
11 lines
156 B
C#
11 lines
156 B
C#
namespace PKHeX.Drawing.Misc;
|
|
|
|
public enum QRDecodeResult
|
|
{
|
|
Success,
|
|
BadPath,
|
|
BadImage,
|
|
BadType,
|
|
BadConnection,
|
|
BadConversion,
|
|
}
|