Added simple binary serializer/deserializer to chODE. 100% untested and most like still broken

This commit is contained in:
UbitUmarov
2012-02-17 21:09:00 +00:00
parent f6c35cf26f
commit 7d77ccc659
5 changed files with 1515 additions and 1010 deletions

View File

@@ -214,6 +214,11 @@ namespace OpenSim.Region.Physics.Manager
}
}
public virtual byte[] Serialize(bool PhysIsRunning)
{
return new byte[0];
}
public virtual void RaiseOutOfBounds(Vector3 pos)
{
// Make a temporary copy of the event to avoid possibility of
@@ -573,5 +578,6 @@ namespace OpenSim.Region.Physics.Manager
{
return false;
}
}
}