diff options
author | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-04-09 21:20:42 +0000 |
---|---|---|
committer | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-04-09 21:20:42 +0000 |
commit | 39a716d9cd71ef6d713e4d74dcda17607e30291c (patch) | |
tree | 9bde58ad63b5a7dd9b52760578f1161f25f1ea08 /java/gjt/animation/CollisionArena.java | |
parent | 18e674e6bab51409d45bb4aae99a5bd6e5767410 (diff) | |
download | ATCD-0_8_2.tar.gz |
This commit was manufactured by cvs2svn to create tag 'v0_8_2'.v0_8_2
Diffstat (limited to 'java/gjt/animation/CollisionArena.java')
-rw-r--r-- | java/gjt/animation/CollisionArena.java | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/java/gjt/animation/CollisionArena.java b/java/gjt/animation/CollisionArena.java deleted file mode 100644 index defb1a6d86b..00000000000 --- a/java/gjt/animation/CollisionArena.java +++ /dev/null @@ -1,39 +0,0 @@ -package gjt.animation; - -import java.awt.Dimension; -import java.awt.Insets; -import java.util.Vector; -import gjt.Orientation; - -/** - * A CollisionArena is defined as an arena in which collisions - * may take place.<p> - * - * CollisionArenas must be able to report their size and - * insets, and return a Vector of the Sprites contained in the - * arena.<p> - * - * CollisionArenas must also implement two methods for handling - * sprite and edge collisions, respectively. - * - * @version 1.0, Apr 1 1996 - * @author David Geary - * @see Playfield - * @see CollisionDetector - * @see EdgeCollisionDetector - * @see SpriteCollisionDetector - * @see gjt.test.SimpleAnimationTest - * @see gjt.test.BumpAnimationTest - * @see gjt.test.TwoDrinkersAnimationTest - */ -public interface CollisionArena { - abstract public Vector getSprites(); - abstract public Dimension getSize (); - abstract public Insets getInsets (); - - abstract public void spriteCollision(Sprite sprite, - Sprite other); - - abstract public void edgeCollision(Sprite sprite, - Orientation orient); -} |