Package com.palepail.TestGame.Enemies

Examples of com.palepail.TestGame.Enemies.ShooterSingle


  public Level getNextLevel() {
    return nextLevel;
  }

  protected Shooter getShooterSingle(Vector2 spawnPoint, int cooldown, float fireRate, String variation) {
    return new ShooterSingle(1f * Configuration.gameScale, 0, 1f * Configuration.gameScale,
        1f * Configuration.gameScale, spawnPoint, cooldown, fireRate, variation, ShooterSingle.BASE_HEALTH);
  }
View Full Code Here

TOP

Related Classes of com.palepail.TestGame.Enemies.ShooterSingle

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.