Examples of Gremlin


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

  @NotNull
  @Override
  public Monster createMonster( @NonNls final String name, final Point position ) throws IllegalArgumentException {
    if ( name.equalsIgnoreCase( GREMLIN ) ) {
      try {
        return new Gremlin( position );
      } catch ( Exception e ) {
        throw new IllegalArgumentException( e );
      }
    } else if ( name.equalsIgnoreCase( SPONGE ) ) {
      try {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.