paddle 0.1.0-beta.1

2D Game Engine for Rust on the Web
Documentation
1
2
3
4
5
6
7
8
9
10
//! Parent module for stuff related to graphics manipulation, such as textures and tessellation.
//! (exclusive display + GPU)
mod paint;
mod tessellation;
mod texture;

pub use paint::*;
pub use tessellation::*;
pub use texture::TextureConfig;
pub use texture::*;