Package Engine.Blocks

Examples of Engine.Blocks.Bedrock


    for (int y = 0; y < TerrainHeight; y++) {
      // XReihe Durchgehen
      for (int x = 0; x < TerrainWidth; x++) {
        blocks[y][x] = new Air();
        if (y == TerrainHeight)
          blocks[y][x] = new Bedrock();
      }
    }
    // for (int y = 0; y < TerrainHeight; y++) {
    // XReihe Durchgehen
    for (int x = 0; x < TerrainWidth; x++) {
View Full Code Here

TOP

Related Classes of Engine.Blocks.Bedrock

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.