12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- #ifndef QT3DLOGIC_QFRAMEACTION_H
- #define QT3DLOGIC_QFRAMEACTION_H
- #include <Qt3DCore/qcomponent.h>
- #include <Qt3DLogic/qt3dlogic_global.h>
- QT_BEGIN_NAMESPACE
- namespace Qt3DLogic {
- class QLogicAspect;
- class QFrameActionPrivate;
- namespace Logic {
- class Executor;
- }
- class QT3DLOGICSHARED_EXPORT QFrameAction : public Qt3DCore::QComponent
- {
- Q_OBJECT
- public:
- explicit QFrameAction(Qt3DCore::QNode *parent = nullptr);
- ~QFrameAction();
- protected:
- QFrameAction(QFrameActionPrivate &dd, QNode *parent = nullptr);
- Q_SIGNALS:
- void triggered(float dt);
- private:
- Q_DECLARE_PRIVATE(QFrameAction)
- void onTriggered(float dt);
- friend class Logic::Executor;
- };
- }
- QT_END_NAMESPACE
- #endif
|