import java.awt.*; public class BoomSprite extends AnimatedSprite { public final String plagarismReallySucks = "(c)1997 Chris Adamson. http://www.mindspring.com/~plucky/"; public BoomSprite (Sequence spriteSeq, SpriteWorld world, int x, int y, int fps) { super (spriteSeq, world, x, y, 0, 0, fps, true, false); } //constructor method protected boolean end() { world.remove (this); return false; } // end() } //BoomSprite