witas

wita at crates.io wita at docs.rs

An asynchronous window library in Rust for Windows

The simple example

```rust

[tokio::main]

async fn main() { let (window, mut rx) = witas::Window::builder() .title("witas hello") .innersize(witas::LogicalSize::new(640, 480)) .build() .await .unwrap(); loop { let event = rx.recv().await; println!("{:?}", event); if let witas::Event::Quit = event { break; } } } ```


Licensed under MIT License

Copylight (c) 2022 LNSEAB