2010-09-09 22:06:57 +00:00
|
|
|
/********************************************************************************
|
2015-02-15 20:56:45 +00:00
|
|
|
* ReactPhysics3D physics library, http://www.reactphysics3d.com *
|
|
|
|
* Copyright (c) 2010-2015 Daniel Chappuis *
|
2010-09-09 22:06:57 +00:00
|
|
|
*********************************************************************************
|
|
|
|
* *
|
2011-11-13 17:49:03 +00:00
|
|
|
* This software is provided 'as-is', without any express or implied warranty. *
|
|
|
|
* In no event will the authors be held liable for any damages arising from the *
|
|
|
|
* use of this software. *
|
2010-09-09 22:06:57 +00:00
|
|
|
* *
|
2011-11-13 17:49:03 +00:00
|
|
|
* Permission is granted to anyone to use this software for any purpose, *
|
|
|
|
* including commercial applications, and to alter it and redistribute it *
|
|
|
|
* freely, subject to the following restrictions: *
|
|
|
|
* *
|
|
|
|
* 1. The origin of this software must not be misrepresented; you must not claim *
|
|
|
|
* that you wrote the original software. If you use this software in a *
|
|
|
|
* product, an acknowledgment in the product documentation would be *
|
|
|
|
* appreciated but is not required. *
|
|
|
|
* *
|
|
|
|
* 2. Altered source versions must be plainly marked as such, and must not be *
|
|
|
|
* misrepresented as being the original software. *
|
|
|
|
* *
|
|
|
|
* 3. This notice may not be removed or altered from any source distribution. *
|
2010-09-09 22:06:57 +00:00
|
|
|
* *
|
|
|
|
********************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
/********************************************************************************
|
|
|
|
* ReactPhysics3D *
|
2015-02-15 20:56:45 +00:00
|
|
|
* Version 0.5.0 *
|
|
|
|
* http://www.reactphysics3d.com *
|
2010-09-09 22:06:57 +00:00
|
|
|
* Daniel Chappuis *
|
|
|
|
********************************************************************************/
|
|
|
|
|
|
|
|
#ifndef REACTPHYSICS3D_H
|
|
|
|
#define REACTPHYSICS3D_H
|
|
|
|
|
|
|
|
// Libraries
|
2011-12-11 00:40:04 +00:00
|
|
|
#include "configuration.h"
|
2011-01-14 16:04:18 +00:00
|
|
|
#include "mathematics/mathematics.h"
|
2012-10-03 19:00:17 +00:00
|
|
|
#include "body/CollisionBody.h"
|
2010-09-09 22:06:57 +00:00
|
|
|
#include "body/RigidBody.h"
|
2012-10-03 19:00:17 +00:00
|
|
|
#include "engine/DynamicsWorld.h"
|
|
|
|
#include "engine/CollisionWorld.h"
|
2013-07-09 22:18:55 +00:00
|
|
|
#include "engine/Material.h"
|
2013-09-10 19:33:52 +00:00
|
|
|
#include "engine/EventListener.h"
|
2012-08-03 22:34:30 +00:00
|
|
|
#include "collision/shapes/CollisionShape.h"
|
|
|
|
#include "collision/shapes/BoxShape.h"
|
|
|
|
#include "collision/shapes/SphereShape.h"
|
|
|
|
#include "collision/shapes/ConeShape.h"
|
|
|
|
#include "collision/shapes/CylinderShape.h"
|
2013-07-09 22:18:55 +00:00
|
|
|
#include "collision/shapes/CapsuleShape.h"
|
2013-07-15 17:10:30 +00:00
|
|
|
#include "collision/shapes/ConvexMeshShape.h"
|
2015-10-26 17:15:25 +00:00
|
|
|
#include "collision/shapes/ConcaveMeshShape.h"
|
2016-01-21 21:27:52 +00:00
|
|
|
#include "collision/shapes/HeightFieldShape.h"
|
2012-08-03 22:34:30 +00:00
|
|
|
#include "collision/shapes/AABB.h"
|
2014-10-21 20:26:40 +00:00
|
|
|
#include "collision/ProxyShape.h"
|
|
|
|
#include "collision/RaycastInfo.h"
|
2015-10-26 17:15:25 +00:00
|
|
|
#include "collision/TriangleMesh.h"
|
|
|
|
#include "collision/TriangleVertexArray.h"
|
2013-05-02 20:41:57 +00:00
|
|
|
#include "constraint/BallAndSocketJoint.h"
|
2013-05-21 21:03:14 +00:00
|
|
|
#include "constraint/SliderJoint.h"
|
2013-06-09 14:31:01 +00:00
|
|
|
#include "constraint/HingeJoint.h"
|
2013-06-12 18:43:54 +00:00
|
|
|
#include "constraint/FixedJoint.h"
|
2010-09-09 22:06:57 +00:00
|
|
|
|
2013-03-05 22:09:50 +00:00
|
|
|
/// Alias to the ReactPhysics3D namespace
|
2010-09-09 22:06:57 +00:00
|
|
|
namespace rp3d = reactphysics3d;
|
|
|
|
|
|
|
|
#endif
|