Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

ugeentity.h 288B

1234567891011121314151617181920212223
  1. #ifndef UGEENTITY_H
  2. #define UGEENTITY_H
  3. #include <QObject>
  4. #include <QPoint>
  5. #include "vector3d.h"
  6. class UGEEntity : public QObject
  7. {
  8. Q_OBJECT
  9. public:
  10. explicit UGEEntity(QObject *parent = 0);
  11. signals:
  12. public slots:
  13. private:
  14. Vector3D _position;
  15. };
  16. #endif // UGEENTITY_H