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.

ugeentitywavefrontobj.h 421B

123456789101112131415161718192021222324
  1. #ifndef UGEENTITYWAVEFRONTOBJ_H
  2. #define UGEENTITYWAVEFRONTOBJ_H
  3. #include "ugeentity.h"
  4. #include "utils/wavefrontobj.h"
  5. class UGEEntityWaveFrontObj : public UGEEntity
  6. {
  7. Q_OBJECT
  8. public:
  9. explicit UGEEntityWaveFrontObj(WaveFrontObj* obj, QObject *parent = 0);
  10. virtual void onDraw(AbstractRenderDevice* device);
  11. signals:
  12. public slots:
  13. private:
  14. WaveFrontObj* _obj;
  15. };
  16. #endif // UGEENTITYWAVEFRONTOBJ_H