Crates.io | witas |
lib.rs | witas |
version | 0.11.2 |
source | src |
created_at | 2022-11-22 07:28:28.217211 |
updated_at | 2023-10-10 01:17:36.48693 |
description | An asynchronous window library in Rust for Windows |
homepage | |
repository | https://github.com/LNSEAB/witas |
max_upload_size | |
id | 720664 |
size | 184,141 |
An asynchronous window library in Rust for Windows
#[tokio::main]
async fn main() {
let mut rx = witas::EventReceiver::new();
let _window = witas::Window::builder()
.title("witas hello")
.inner_size(witas::LogicalSize::new(640, 480))
.set_receiver(&rx)
.await
.unwrap();
loop {
let (event, _) = rx.recv().await;
println!("{:?}", event);
if let witas::Event::Closed = event {
break;
}
}
}
Licensed under MIT License
Copylight (c) 2022 LNSEAB