Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jan 24, 2007, 8:48:26 PM (17 years ago)
Author:
bottac
Message:

Here comes the updated version.

Location:
branches/ODE
Files:
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branches/ODE/src/world_entities/world_entity.h

    r10147 r10355  
    2222#include <vector>
    2323
     24#ifdef WITH_ODE
     25#include  <ode/ode.h>
     26#endif
    2427
    2528// FORWARD DECLARATION
     
    7679  /* --- Collision Detection Block  --- */
    7780  bool buildObbTree(int depth);
     81  void checkCollision(WorldEntity* worldEntity);
     82
    7883  virtual void collidesWith (WorldEntity* entity, const Vector& location);
    7984  virtual void collidesWithGround(const Vector& location);
     
    230235  int                     healthMax_handle;
    231236
     237  unsigned int*       Ind;
     238
     239
     240   #ifdef WITH_ODE     
     241  dTriMeshDataID   ODE_Geometry; //!< ODE Geometry Data of the static model
     242  dGeomID          ODE_Geom_ID; //!< ID of ODE Geometry Data
     243  dWorldID world;
     244  dSpaceID space;
     245  dJointGroupID contactgroup;
     246  dContact contact[300];
     247  #endif
    232248
    233249
Note: See TracChangeset for help on using the changeset viewer.