quicksilver 0.1.0

A simple game framework for 2D games in pure Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod backend;
mod camera;
mod canvas;
mod color;
mod image;
mod window;
pub(crate) use self::backend::{Backend, Vertex};
pub use self::camera::Camera;
pub use self::canvas::Canvas;
pub use self::color::Color;
pub use self::image::{Image, ImageError, PixelFormat};
pub use self::window::{Window, WindowBuilder};