Examples of WaterTile


Examples of com.coffeerpg.tiles.WaterTile

      break;
    case GRASSBR:
      terrain[row][col] = new GrassTile(row * TILE_SIZE, col * TILE_SIZE, type);
      break;
    case WATER:
      terrain[row][col] = new WaterTile(m, row * TILE_SIZE, col * TILE_SIZE);
      break;
    case TREE:
      terrain[row][col] = new TreeTile(m, row * TILE_SIZE, col * TILE_SIZE);
      break;
    case SAND:
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.