Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/objects/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'objects/__init__.py')
-rw-r--r--objects/__init__.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/objects/__init__.py b/objects/__init__.py
new file mode 100644
index 0000000..f10dcdb
--- /dev/null
+++ b/objects/__init__.py
@@ -0,0 +1,16 @@
+from objects.animals import Penguin
+from objects.balls import SoccerBall, BowlingBall, BeachBall
+from objects.elastica import Elastica
+from objects.esteira import Esteira
+from objects.target import Target
+from objects.things import Thing, check_collision
+from objects.wall import UpWall, DownWall, LeftWall, RightWall
+
+# namespace cleanup
+del animals
+del balls
+del elastica
+del esteira
+del target
+del things
+del wall