Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/gameengine/Ketsji/KX_ScalarInterpolator.h')
-rw-r--r--source/gameengine/Ketsji/KX_ScalarInterpolator.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/gameengine/Ketsji/KX_ScalarInterpolator.h b/source/gameengine/Ketsji/KX_ScalarInterpolator.h
index 5d8c3163376..ddb1eb68867 100644
--- a/source/gameengine/Ketsji/KX_ScalarInterpolator.h
+++ b/source/gameengine/Ketsji/KX_ScalarInterpolator.h
@@ -39,12 +39,12 @@ class KX_IScalarInterpolator;
class KX_ScalarInterpolator : public KX_IInterpolator {
public:
- KX_ScalarInterpolator(MT_Scalar* target,
+ KX_ScalarInterpolator(MT_Scalar* target,
KX_IScalarInterpolator *ipo) :
m_target(target),
m_ipo(ipo)
{}
-
+
virtual ~KX_ScalarInterpolator() {}
virtual void Execute(float currentTime) const;
void SetNewTarget(MT_Scalar* newtarget)