// Written by Leonardo Mariscal <leo@cav.bz>, 2018
/// Information related to glfw and window.
pubstructWindow{pubwidth:i32,
pubheight:i32,
}implWindow{/// Creates new window creating an opengl context and loading opengl functions.
pubfnnew(width:i32, height:i32)-> Window{
Window {
width: width,
height: height,}}}