mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-22 14:53:53 -07:00
13 lines
363 B
C++
13 lines
363 B
C++
#ifndef ABSTRACTGRAPHICSITEM_H
|
|
#define ABSTRACTGRAPHICSITEM_H
|
|
|
|
#include <QGraphicsItem>
|
|
|
|
class AbstractGraphicsItem : public QGraphicsItem {
|
|
protected:
|
|
void paintNumberEllipse(int number, int radius, const QColor &color, int position, int count, QPainter *painter);
|
|
public:
|
|
AbstractGraphicsItem(QGraphicsItem *parent = 0) : QGraphicsItem(parent) { }
|
|
};
|
|
|
|
#endif
|