Package com.palepail.TestGame.Enemies

Examples of com.palepail.TestGame.Enemies.BossOne


    largeEnemy.setRightDownUpScript();
    enemyQueue.add(largeEnemy);
    enemyTimes.add(6000);
    enemyTimes.add(WAIT_FOR_ENEMIES);

    BossOne boss = new BossOne(5f, 0, 2 * Configuration.gameScale, 2 * Configuration.gameScale, new Vector2(
        10 * Configuration.gameScale, 23 * Configuration.gameScale));
    enemyQueue.add(boss);
    enemyTimes.add(6300);

    enemyTimes.add(WAIT_FOR_ENEMIES);
 
View Full Code Here


    largeEnemy.setRightDownUpScript();
    enemyQueue.add(largeEnemy);
    enemyTimes.add(6000);
    enemyTimes.add(WAIT_FOR_ENEMIES);

    BossOne boss = new BossOne(5f, 0, 2 * Configuration.gameScale, 2 * Configuration.gameScale, new Vector2(
        10 * Configuration.gameScale, 23 * Configuration.gameScale));
    enemyQueue.add(boss);
    enemyTimes.add(6300);

    enemyTimes.add(WAIT_FOR_ENEMIES);
 
View Full Code Here

TOP

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

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.