1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Written by Leonardo Mariscal <leo@cav.bz>, 2018

//! Maple Library
//!
//! 3D Graphics Engine

/// Graphics Related types and methods.
///
/// Makes abstractions for graphics apis like opengl, directx or vulkan.
/// The primary graphics api is opengl 3.3 core for convenience.
pub mod gfx {

    mod window;

    pub use self::window::*;
}