Package com.palepail.TestGame.Model

Examples of com.palepail.TestGame.Model.Ship


  int counter = 0;
  Level level;

  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;

View Full Code Here

TOP

Related Classes of com.palepail.TestGame.Model.Ship

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.