* @param args the command line arguments
* @throws IOException
*/
public static void main(String[] args) throws IOException {
Node parent = new Node("Tile-Graphics");
parent.addAttribute("tile-width", "80");
parent.addAttribute("tile-height", "80");
parent.appendChild(createTerrain());
parent.appendChild(createRiver());
parent.appendChild(createResources());