pistoncore-glfw_window 0.34.0

A GLFW window back-end for the Piston game engine
Documentation
extern crate glfw_window;
extern crate window;

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

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