Skip to content

swatteau/tmx

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

85 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

Releases

No releases published

Packages

No packages published

Languages