tileset 0.0.6

Tailset definition, and supports importing multiple formats
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use image::{GenericImageView, ImageResult, RgbaImage};
use std::path::Path;

pub fn decompose_grid_sequence_frame<P>(
    path: P,
    start: (usize, usize),
    end: (usize, usize),
    is_horizontal: bool,
) -> ImageResult<()>
where
    P: AsRef<Path>,
{
    todo!()
}

pub struct AnimationSlice {}