pistoncore-glfw_window 0.34.0

A GLFW window back-end for the Piston game engine
Documentation

extern crate glfw_window;
extern crate shader_version;
extern crate window;

use glfw_window::GlfwWindow;
use window::WindowSettings;

fn main() {
    let _: GlfwWindow = WindowSettings::new("GLFW Window", (640, 480))
        .fullscreen(false)
        .vsync(true)
        .build()
        .unwrap();
}