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/Physics/common/PHY_ICharacter.h')
-rw-r--r--source/gameengine/Physics/common/PHY_ICharacter.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/gameengine/Physics/common/PHY_ICharacter.h b/source/gameengine/Physics/common/PHY_ICharacter.h
index 8a599452816..a3d3000a143 100644
--- a/source/gameengine/Physics/common/PHY_ICharacter.h
+++ b/source/gameengine/Physics/common/PHY_ICharacter.h
@@ -28,8 +28,8 @@ public:
virtual int GetJumpCount()= 0;
- virtual void SetWalkDirection(PHY__Vector3 dir)=0;
- virtual PHY__Vector3 GetWalkDirection()=0;
+ virtual void SetWalkDirection(const class MT_Vector3& dir)=0;
+ virtual MT_Vector3 GetWalkDirection()=0;
#ifdef WITH_CXX_GUARDEDALLOC
MEM_CXX_CLASS_ALLOC_FUNCS("GE:PHY_ICharacter")