|
From: julien r. <jul...@us...> - 2004-10-10 21:59:30
|
Update of /cvsroot/epfl/tgengine-0.1 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30199 Added Files: physiccallback.h Log Message: --- NEW FILE: physiccallback.h --- #ifndef _TGPHYSICCALLBACK #define _TGPHYSICCALLBACK #include "vector3.h" namespace tg { /** * PhysicCallBack: implemente les fonctions appeles lorsqu'un scenenode "colisionne" (avec le monde ou avec un autre scenenode) */ class SceneNode; class PhysicCallBack { public: virtual void Collide (SceneNode* other,const Vector3& vPoint, const Vector3& vCollisionNormal) = 0; }; } #endif |