Package org.gbcpainter.game.model.monsters

Examples of org.gbcpainter.game.model.monsters.Sponge


      } catch ( Exception e ) {
        throw new IllegalArgumentException( e );
      }
    } else if ( name.equalsIgnoreCase( SPONGE ) ) {
      try {
        return new Sponge( position );
      } catch ( Exception e ) {
        throw new IllegalArgumentException( e );
      }
    } else if ( name.equalsIgnoreCase( BOMBER ) ) {
      try {
View Full Code Here

TOP

Related Classes of org.gbcpainter.game.model.monsters.Sponge

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.