Package pl.edu.pw.elka.mmarkiew.model.entities.enemies

Examples of pl.edu.pw.elka.mmarkiew.model.entities.enemies.Bomb


   * @return Appropriate Bomb object
   */
  public static Bomb createBombEntity(final float x, final float y,
                              final long plantTime, final long timer, final int area)
  {
    return new Bomb(GameEntities.BOMB.getAnim().clone(),
              GameEntities.BOMB.getWidth(), GameEntities.BOMB.getHeight(), x, y, plantTime, timer, area);
  }
View Full Code Here

TOP

Related Classes of pl.edu.pw.elka.mmarkiew.model.entities.enemies.Bomb

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.