Package org.sfaci.bombermanx.characters

Examples of org.sfaci.bombermanx.characters.Player


  public SpriteManager(Bombermanx game) {
   
    batch = game.spriteBatch;
        this.game = game;
   
    player = new Player(ResourceManager.assets.get("player/player_idle.png", Texture.class), 0, 0, 3, this);
    bricks = new Array<Brick>();
    bombs = new Array<Bomb>();
    enemies = new Array<Enemy>();
        hudMessage = null;
  }
View Full Code Here

TOP

Related Classes of org.sfaci.bombermanx.characters.Player

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.