@PhysPath.h 947 B

1234567891011121314151617181920212223242526
  1. /******************************************************************************/
  2. /******************************************************************************/
  3. class PhysPath // Phys Body Settings for Path Generation
  4. {
  5. OBJ_PATH mode;
  6. PhysBodyPtr body;
  7. operator bool()C;
  8. bool operator==(C PhysPath &pp)C;
  9. bool operator!=(C PhysPath &pp)C;
  10. void set (OBJ_PATH mode, C PhysBodyPtr &body);
  11. void operator=(C Object &obj );
  12. void operator=(C ObjData &obj );
  13. PhysPath(OBJ_PATH mode, C PhysBodyPtr &body);
  14. PhysPath(C Object &obj );
  15. PhysPath(C ObjData &obj );
  16. public:
  17. PhysPath();
  18. };
  19. /******************************************************************************/
  20. /******************************************************************************/
  21. /******************************************************************************/