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
//! This module has a copy of quicksilver types  to ease transition form quicksilver to something else.
//!
//! Everything inside has been copied from https://github.com/ryanisaacg/quicksilver and only marginally modified.
//!
pub mod geom;
pub mod graphics;

pub use super::input::*;
pub use geom::{about_equal, Circle, Shape};
pub use graphics::*;