Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 716 Bytes

README.md

File metadata and controls

25 lines (18 loc) · 716 Bytes

Build Status License

About tmx

tmx is a simple Rust crate for reading Tiled XML files.

Getting Started

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)
    };
}

License

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.