Winey - Windowing library for Rust

Lines of code

Target

Supported platforms

Example

```rust use winey::window::Window; use winey::{KeyCode, WindowEvent, WineyWindowImplementation};

fn main() { let window = Window::new("Hello World", 500, 500);

window.show();

window.run(|event,control_flow| {
    match event {
        WindowEvent::CloseRequested => {
            control_flow.exit(0);
        }

        _ => {

        }
    }
})

} ```

License

Winey is under MIT LICENSE