Files
eepp/include/eepp/physics.hpp
Martín Lucas Golini e5009123ce Physics Module refactored.
2014-06-28 00:40:44 -03:00

29 lines
1.1 KiB
C++

#ifndef EEPP_PHYSICS_HPP
#define EEPP_PHYSICS_HPP
#include <eepp/physics/physicsmanager.hpp>
#include <eepp/physics/shape.hpp>
#include <eepp/physics/shapecircle.hpp>
#include <eepp/physics/shapepoint.hpp>
#include <eepp/physics/shapesegment.hpp>
#include <eepp/physics/shapepoly.hpp>
#include <eepp/physics/space.hpp>
#include <eepp/physics/body.hpp>
#include <eepp/physics/constraints/constraint.hpp>
#include <eepp/physics/constraints/dampedrotaryspring.hpp>
#include <eepp/physics/constraints/dampedspring.hpp>
#include <eepp/physics/constraints/gearjoint.hpp>
#include <eepp/physics/constraints/groovejoint.hpp>
#include <eepp/physics/constraints/pinjoint.hpp>
#include <eepp/physics/constraints/pivotjoint.hpp>
#include <eepp/physics/constraints/ratchetjoint.hpp>
#include <eepp/physics/constraints/rotarylimitjoint.hpp>
#include <eepp/physics/constraints/simplemotor.hpp>
#include <eepp/physics/constraints/slidejoint.hpp>
#include <eepp/physics/moment.hpp>
#include <eepp/physics/area.hpp>
#include <eepp/physics/shapepolysprite.hpp>
#include <eepp/physics/shapecirclesprite.hpp>
#endif