CmQtSceneWidget.h 246 B

123456789101112131415
  1. #pragma once
  2. #include "CmEditorPrefs.h"
  3. #include "CmQtEditorWidget.h"
  4. namespace CamelotEditor
  5. {
  6. class QtSceneWidget: public QtEditorWidget
  7. {
  8. Q_OBJECT
  9. public:
  10. QtSceneWidget(QWidget* parent);
  11. virtual ~QtSceneWidget();
  12. };
  13. }