Rewrite collision extension to not require pyrex. Aside from removing the dependency...
[python-bulletml.git] / bulletml / __init__.py
index c31dce7..0d4cd94 100644 (file)
@@ -36,11 +36,11 @@ attributes that can be used to influence it.
 
 from bulletml.parser import BulletML
 from bulletml.impl import Bullet
-from bulletml.collision import overlaps, collides
+from bulletml.collision import overlaps, collides, collides_all
 
-VERSION = (1,)
+VERSION = (2,)
 VERSION_STRING = ".".join(map(str, VERSION))
 
 __all__ = ["VERSION", "VERSION_STRING", "Bullet", "BulletML",
-           "overlaps", "collides"]
+           "overlaps", "collides", "collides_all"]