box2d.h 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. // MIT License
  2. // Copyright (c) 2019 Erin Catto
  3. // Permission is hereby granted, free of charge, to any person obtaining a copy
  4. // of this software and associated documentation files (the "Software"), to deal
  5. // in the Software without restriction, including without limitation the rights
  6. // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  7. // copies of the Software, and to permit persons to whom the Software is
  8. // furnished to do so, subject to the following conditions:
  9. // The above copyright notice and this permission notice shall be included in all
  10. // copies or substantial portions of the Software.
  11. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  12. // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  13. // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  14. // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  15. // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  16. // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  17. // SOFTWARE.
  18. #ifndef BOX2D_H
  19. #define BOX2D_H
  20. // These include files constitute the main Box2D API
  21. #include "b2_settings.h"
  22. #include "b2_draw.h"
  23. #include "b2_timer.h"
  24. #include "b2_chain_shape.h"
  25. #include "b2_circle_shape.h"
  26. #include "b2_edge_shape.h"
  27. #include "b2_polygon_shape.h"
  28. #include "b2_broad_phase.h"
  29. #include "b2_dynamic_tree.h"
  30. #include "b2_body.h"
  31. #include "b2_contact.h"
  32. #include "b2_fixture.h"
  33. #include "b2_time_step.h"
  34. #include "b2_world.h"
  35. #include "b2_world_callbacks.h"
  36. #include "b2_distance_joint.h"
  37. #include "b2_friction_joint.h"
  38. #include "b2_gear_joint.h"
  39. #include "b2_motor_joint.h"
  40. #include "b2_mouse_joint.h"
  41. #include "b2_prismatic_joint.h"
  42. #include "b2_pulley_joint.h"
  43. #include "b2_revolute_joint.h"
  44. #include "b2_weld_joint.h"
  45. #include "b2_wheel_joint.h"
  46. #endif