1 2 3 4 5 6 7 8 9 10 11 12
//! # inochi2d-rs //! //! A pure Rust implementation of [Inochi2D](https://inochi2d.com), the realtime 2D puppet //! animation framework. pub mod gl; mod parser; mod tga; pub use parser::{ BlendMode, CompressedTexture, Mask, Meta, Model, Node, Puppet, Texture, Transform, };