X-Git-Url: https://git.yukkurigames.com/?p=python-bulletml.git;a=blobdiff_plain;f=bulletml%2F__init__.py;h=0d4cd94311c1733f6c257bbaddf82dea2d7dfb6d;hp=2a825cdb705ca21b0a0ae4edc7ae2d5f648aaa6e;hb=eed0de88f98b23ecb25507b47a507e2791861334;hpb=0f067785de711c772c2c44c7f1e1cf8b44b2704f diff --git a/bulletml/__init__.py b/bulletml/__init__.py index 2a825cd..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 = (0, 1) +VERSION = (2,) VERSION_STRING = ".".join(map(str, VERSION)) __all__ = ["VERSION", "VERSION_STRING", "Bullet", "BulletML", - "overlaps", "collides"] + "overlaps", "collides", "collides_all"]