tileset 0.1.3

Tailset definition, and supports importing multiple formats
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod bg_set;
pub mod complete;
pub mod corner_wang;
pub mod edge_set;
pub mod edge_wang;
pub mod rpg_maker_vx;
pub mod rpg_maker_xp;
use crate::{
    utils::{check_image_multiple, io_error},
    GridAtlas, GridCompleteAtlas, GridCornerRMVX,
};
use image::{GenericImage, GenericImageView, ImageResult, RgbaImage};
#[cfg(feature = "serde")]
use serde::{Deserialize, Serialize};
use std::{io::ErrorKind, path::Path};