LiquidFun
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
Box2D.h
1 /*
2 * Copyright (c) 2006-2009 Erin Catto http://www.box2d.org
3 * Copyright (c) 2013 Google, Inc.
4 *
5 * This software is provided 'as-is', without any express or implied
6 * warranty. In no event will the authors be held liable for any damages
7 * arising from the use of this software.
8 * Permission is granted to anyone to use this software for any purpose,
9 * including commercial applications, and to alter it and redistribute it
10 * freely, subject to the following restrictions:
11 * 1. The origin of this software must not be misrepresented; you must not
12 * claim that you wrote the original software. If you use this software
13 * in a product, an acknowledgment in the product documentation would be
14 * appreciated but is not required.
15 * 2. Altered source versions must be plainly marked as such, and must not be
16 * misrepresented as being the original software.
17 * 3. This notice may not be removed or altered from any source distribution.
18 */
19 
20 #ifndef BOX2D_H
21 #define BOX2D_H
22 
28 // These include files constitute the main Box2D API
29 
31 #include <Box2D/Common/b2Draw.h>
32 #include <Box2D/Common/b2Stat.h>
33 #include <Box2D/Common/b2Timer.h>
34 
35 #include <Box2D/Collision/Shapes/b2CircleShape.h>
36 #include <Box2D/Collision/Shapes/b2EdgeShape.h>
37 #include <Box2D/Collision/Shapes/b2ChainShape.h>
38 #include <Box2D/Collision/Shapes/b2PolygonShape.h>
39 
40 #include <Box2D/Collision/b2BroadPhase.h>
41 #include <Box2D/Collision/b2Distance.h>
42 #include <Box2D/Collision/b2DynamicTree.h>
43 #include <Box2D/Collision/b2TimeOfImpact.h>
44 
45 #include <Box2D/Dynamics/b2Body.h>
46 #include <Box2D/Dynamics/b2Fixture.h>
47 #include <Box2D/Dynamics/b2WorldCallbacks.h>
48 #include <Box2D/Dynamics/b2TimeStep.h>
49 #include <Box2D/Dynamics/b2World.h>
50 
51 #include <Box2D/Dynamics/Contacts/b2Contact.h>
52 
53 #include <Box2D/Dynamics/Joints/b2DistanceJoint.h>
54 #include <Box2D/Dynamics/Joints/b2FrictionJoint.h>
55 #include <Box2D/Dynamics/Joints/b2GearJoint.h>
56 #include <Box2D/Dynamics/Joints/b2MotorJoint.h>
57 #include <Box2D/Dynamics/Joints/b2MouseJoint.h>
58 #include <Box2D/Dynamics/Joints/b2PrismaticJoint.h>
59 #include <Box2D/Dynamics/Joints/b2PulleyJoint.h>
60 #include <Box2D/Dynamics/Joints/b2RevoluteJoint.h>
61 #include <Box2D/Dynamics/Joints/b2RopeJoint.h>
62 #include <Box2D/Dynamics/Joints/b2WeldJoint.h>
63 #include <Box2D/Dynamics/Joints/b2WheelJoint.h>
64 
67 
68 #endif