Package com.thecherno.cherno.engine

Examples of com.thecherno.cherno.engine.RockTile


  private void levels() {
    test = new TiledLevel("res/levels/level.png");
    test.addTileCode(0xffffff, new GrassTile(grass.getWidth(), grass.getHeight(), grass));
    test.setTileSize(32);
    test.addTileCode(0xff00ff, new RockTile(rock));
    test.add(player);
  }
View Full Code Here

TOP

Related Classes of com.thecherno.cherno.engine.RockTile

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.