tileset 0.0.1

Tailset definition, and supports importing multiple formats
Documentation
1
2
3
4
5
6
7
use super::*;

impl GridEdgeAtlas {
    pub fn save<P>(&self, path: P) -> ImageResult<()> where P: AsRef<Path> {
        self.image.save(path)
    }
}