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);
}