tmx
is a simple Rust crate for reading Tiled XML files.
extern crate tmx;
fn main() {
match tmx::Map::open("some_file.tmx") {
Ok(map) => println!("Got a map!"),
Err(e) => println!("Got an error: {}", e)
};
}
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. See the accompanying LICENSE file.