Package com.riley.angrymasons.Model

Examples of com.riley.angrymasons.Model.Ship


  Bullet b;
  Enemy e;
 
  public World (AngryMasons game){
    this.game = game;
    ship = new Ship(new Vector2(5, 5), 1, 1, 0, 5f);
    enemies.add(new Follower(5f, 0, 1, 1, new Vector2(10, 10)));
    Gdx.input.setInputProcessor(new InputHandler(this));
  }
View Full Code Here


  Bullet b;
  Enemy e;
 
  public World (AngryMasons game){
    this.game = game;
    ship = new Ship(new Vector2(5, 5), 1, 1, 0, 5f);
    enemies.add(new Follower(5f, 0, 1, 1, new Vector2(10, 10)));
    Gdx.input.setInputProcessor(new InputHandler(this));
  }
View Full Code Here

  Ship ship;
  Follower follower;
 
  public World (AngryMasons game){
    this.game = game;
    ship = new Ship(new Vector2(5, 5), 1, 1, 0, 5f);
    follower = new Follower(5f, 0, 1, 1, new Vector2(10, 10));
    Gdx.input.setInputProcessor(new InputHandler(this));
  }
View Full Code Here

TOP

Related Classes of com.riley.angrymasons.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.