An asynchronous window library in Rust for Windows
```rust
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; } } if let Err(e) = witas::UiThread::join().await { std::panic::resume_unwind(e); } } ```
Licensed under MIT License
Copylight (c) 2022 LNSEAB