Finally abstracted constants properly. Changed how the event module works; wasn't really abstract before. Removed libs we're not going to use: native, signal.

This commit is contained in:
rude
2009-10-10 11:11:04 +02:00
parent 0a2ae705dd
commit 87e3c4131c
101 changed files with 3225 additions and 33496 deletions
+2 -2
View File
@@ -56,7 +56,7 @@ namespace box2d
joint = 0;
}
int Joint::getType() const
Joint::Type Joint::getType() const
{
switch(joint->GetType())
{
@@ -73,7 +73,7 @@ namespace box2d
case e_gearJoint:
return JOINT_GEAR;
default:
return -1;
return JOINT_INVALID;
}
}