pistoncore-sdl2_window 0.70.0

A SDL2 back-end for the Piston game engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

extern crate sdl2_window;
extern crate window;

use sdl2_window::Sdl2Window;
use window::WindowSettings;

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