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.

20 lines
331 B

6 months ago
#ifndef GAMEOBJECT_H
#define GAMEOBJECT_H
#include <QGraphicsPixmapItem>
#include <QObject>
#include<QDebug>
class GameObject : public QGraphicsPixmapItem,public QObject
{
public:
explicit GameObject(QObject *parent = nullptr);
~GameObject();
QPointF getCenterPos();//获取中心位置
};
#endif // GAMEOBJECT_H