tileset 0.0.3

Tailset definition, and supports importing multiple formats
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod bg_set;
pub mod corner_set;
pub mod grid_edge_set;

use crate::{GridAtlas, GridBackgroundAtlas};
use dashmap::DashMap;
use image::{GenericImageView, Rgba, RgbaImage, SubImage};
use std::{
    collections::BTreeMap,
    sync::{Arc, Mutex},
};

mod display;