package ballworlds.framework; /** * A Bumper is an abstract class that does nothing -- it is just a convenient name * for a "generic" bumper -- a stationary object that can "bump" Balls. * * This is just a stub for future expansion of this project. * * @author David Mutchler, Salman Azhar, Matt Boutell, Curt Clifton and others. * Created Sep 29, 2005. Modified September, 2008. */ public abstract class Bumper { // TODO: Someday implement this class. }