mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2025-04-29 22:24:26 +02:00
9 lines
243 B
C
9 lines
243 B
C
#pragma once
|
|
|
|
#include <QColor>
|
|
#include <QPainter>
|
|
#include <QSize>
|
|
|
|
// https://stackoverflow.com/questions/21400254/how-to-draw-a-qr-code-with-qt-in-native-c-c
|
|
void paintQR(QPainter& painter, const QSize sz, const QString& data, QColor fg);
|