mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-06 05:27:14 -05:00
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.
14 lines
354 B
C#
14 lines
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);
|
|
}
|
|
} |