Moved most constants into relevant classes.

This commit is contained in:
rude
2009-07-26 23:05:26 +02:00
parent dcb3dfd83d
commit e0115a384e
25 changed files with 901 additions and 555 deletions
+2 -3
View File
@@ -23,8 +23,7 @@
// LOVE
#include <common/runtime.h>
#include <common/Object.h>
#include <common/constants.h>
#include <physics/Joint.h>
// Box2D
#include "Include/Box2D.h"
@@ -44,7 +43,7 @@ namespace box2d
* A Joint can be used to prevent Bodies from going to
* far apart, or coming too close together.
**/
class Joint : public Object
class Joint : public love::physics::Joint
{
friend class GearJoint;