Examples of BouncingBomb


Examples of pl.edu.pw.elka.mmarkiew.model.entities.bonus.BouncingBomb

      case EXIT:        return new Exit(          anim, dyingAnim, width, height, x, y);
      case SPEED:        return new SpeedBonus(        anim, dyingAnim, width, height, x, y);
      case AREA_INC:      return new IncreaseBombAreaBonusanim, dyingAnim, width, height, x, y);
      case BOMB_INC:      return new IncreaseBombAmountBonusanim, dyingAnim, width, height, x, y);
      case LIFE_INC:      return new IncreaseLifeNumberBonusanim, dyingAnim, width, height, x, y);
      case BOUNCING_BOMB:    return new BouncingBomb(    anim, dyingAnim, width, height, x, y);
      case EXPLOSION:      return new ExplosionEntity(      anim, (int) x, (int) y);
      case DESTROYING_BRICK:  return new DestroyingBrickanim, (int) x, (int) y);
      case UNDEFINED:      return null;
      default:        return null;
    }
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.