mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
db5e084ef9
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
No EOL
354 B
C#
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);
|
|
}
|
|
} |