few optimization and find aim for towers
This commit is contained in:
18
graphicsalien.cpp
Normal file
18
graphicsalien.cpp
Normal file
@@ -0,0 +1,18 @@
|
||||
#include "graphicsalien.h"
|
||||
|
||||
GraphicsAlien::GraphicsAlien(QGraphicsItem *grItem) : QGraphicsItem(grItem)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
|
||||
QRectF GraphicsAlien::boundingRect()
|
||||
{
|
||||
return QRectF(0,0,10,10);
|
||||
}
|
||||
|
||||
|
||||
void GraphicsAlien::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
|
||||
{
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user