You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
386 B

2 years ago
#ifndef TOWER_H
#define TOWER_H
#include <QGraphicsPixmapItem>
#include <QGraphicsPolygonItem>
2 years ago
#include <QPointF>
#include <QObject>
2 years ago
2 years ago
class Tower : public QObject, public QGraphicsPixmapItem {
Q_OBJECT
2 years ago
public:
Tower(QGraphicsItem *parent=0);
2 years ago
public slots:
void attack_target();
2 years ago
private:
QGraphicsPolygonItem *attack_area;
2 years ago
QPointF attack_dest;
2 years ago
};
#endif // TOWER_H