Package com.palepail.TestGame.Utilities

Examples of com.palepail.TestGame.Utilities.InfoBox


  public World(TestGame game, Level level) {
    this.game = game;
    ship = new Ship(new Vector2(10 * Configuration.gameScale, 3 * Configuration.gameScale),
        .4f * Configuration.gameScale, .4f * Configuration.gameScale, 0, 4f * Configuration.gameScale, 1,
        new InfoBox());
    ship.setDamage(ship.getBaseDamage());
    this.level = level;

    ship.getInfoBox().setLevelName(level.getName());
    ship.getInfoBox().setScore(level.getName(), 0);
View Full Code Here

TOP

Related Classes of com.palepail.TestGame.Utilities.InfoBox

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.