Package com.coffeerpg.tiles

Examples of com.coffeerpg.tiles.SandTile


      break;
    case TREE:
      terrain[row][col] = new TreeTile(m, row * TILE_SIZE, col * TILE_SIZE);
      break;
    case SAND:
      terrain[row][col] = new SandTile(m, row * TILE_SIZE, col * TILE_SIZE);
      break;
    }

  }
 
View Full Code Here

TOP

Related Classes of com.coffeerpg.tiles.SandTile

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.