PKHeX/PKHeX.WinForms/Util/QRCoder/AbstractQRCode.cs
Kurt db5e084ef9 Further refactoring
Move System.Drawing usage out of Core to WinForms, as System.Drawing is
not in .NET Core/Standard. Simple methods to return resource name
strings have been added instead.
2017-01-11 17:55:42 -08:00

14 lines
No EOL
354 B
C#

// From: https://github.com/codebude/QRCoder
namespace QRCoder
{
public abstract class AbstractQRCode<T>
{
protected QRCodeData QrCodeData { get; set; }
protected AbstractQRCode(QRCodeData data) {
this.QrCodeData = data;
}
public abstract T GetGraphic(int pixelsPerModule);
}
}