summaryrefslogtreecommitdiffstats
path: root/src/logic/qlogiccomponent.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/logic/qlogiccomponent.h')
-rw-r--r--src/logic/qlogiccomponent.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/logic/qlogiccomponent.h b/src/logic/qlogiccomponent.h
index 500b1d85b..68d0bf69a 100644
--- a/src/logic/qlogiccomponent.h
+++ b/src/logic/qlogiccomponent.h
@@ -63,13 +63,13 @@ protected:
QLogicComponent(QLogicComponentPrivate &dd, QNode *parent = 0);
Q_SIGNALS:
- void frameUpdate();
+ void frameUpdate(float dt);
private:
Q_DECLARE_PRIVATE(QLogicComponent)
QT3D_CLONEABLE(QLogicComponent)
- virtual void onFrameUpdate();
+ virtual void onFrameUpdate(float dt);
friend class Logic::Executor;
};