1 2 3 4 5 6 7 8
//! This is a set of relatively simple tools used to assist with the building of NES games. //! Currently, its only functionality is in managing sprite sheets. #[macro_use] extern crate serde_derive; extern crate lodepng; pub mod sprites;