pistoncore-glutin_window 0.59.0

A Piston window back-end using the Glutin library
Documentation
# glutin_window [![Build Status]https://travis-ci.org/PistonDevelopers/glutin_window.svg?branch=master]https://travis-ci.org/PistonDevelopers/glutin_window [![Crates.io]https://img.shields.io/crates/v/pistoncore-glutin_window.svg]https://crates.io/crates/pistoncore-glutin_window [![Crates.io]https://img.shields.io/crates/l/pistoncore-glutin_window.svg]https://github.com/PistonDevelopers/glutin_window/blob/master/LICENSE

A glutin back-end for the Piston game engine

[How to contribute](https://github.com/PistonDevelopers/piston/blob/master/CONTRIBUTING.md)

# Installation
To use this as a dependency, add the following code to your Cargo.toml file:

```Rust
    [dependencies.pistoncore-glutin_window]
    git = "https://github.com/PistonDevelopers/glutin_window"
```

## How to create a window

```Rust
let mut window: GlutinWindow = WindowSettings::new("Glutin Window", (640, 480))
    .fullscreen(false)
    .vsync(true)
    .build()
    .unwrap();
```

See the examples for more ways to create a window.

## Dependencies

![dependencies](./Cargo.png)