gypsum 0.1.0

A Rust library for drawing ASCII-style roguelike graphics targetting both native (OpenGL) and wasm (WebGL) platforms
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
extern crate image;
extern crate uni_app;
extern crate uni_gl;

pub mod app;
mod file;
mod grid;
pub mod program;
mod quad;
mod texture;

pub use app::App;