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.

ugeentitycube.h 379B

1234567891011121314151617181920212223242526
  1. #ifndef UGEENTITYCUBE_H
  2. #define UGEENTITYCUBE_H
  3. #include "ugeentity.h"
  4. class UGEEntityCube : public UGEEntity
  5. {
  6. Q_OBJECT
  7. public:
  8. explicit UGEEntityCube(QObject *parent = 0);
  9. float getSize() const;
  10. virtual void draw(AbstractRenderDevice* device);
  11. signals:
  12. public slots:
  13. void setSize(float size);
  14. private:
  15. float _size;
  16. };
  17. #endif // UGEENTITYCUBE_H