tge 0.0.4

A lightweight cross-platform 2D game framework written in pure Rust and based on OpenGL 3.3+.
Documentation
1
2
3
4
5
6
7
8
9
mod mesh;
mod sprite;
mod text;

use super::{PrimitiveType, Color, Vertex};

pub use mesh::MeshDrawParams;
pub use sprite::SpriteDrawParams;
pub use text::{TextLayoutGravity, TextDrawParams};