X-Git-Url: https://git.yukkurigames.com/?p=python-bulletml.git;a=blobdiff_plain;f=bulletml%2F__init__.py;h=0d4cd94311c1733f6c257bbaddf82dea2d7dfb6d;hp=c31dce7640a84f27245e987beeeb6e87e9906f4e;hb=eed0de88f98b23ecb25507b47a507e2791861334;hpb=382c381aa58db92e81145d49f193f79fdfa72450 diff --git a/bulletml/__init__.py b/bulletml/__init__.py index c31dce7..0d4cd94 100644 --- a/bulletml/__init__.py +++ b/bulletml/__init__.py @@ -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"]