mirror of
https://github.com/emilk/egui.git
synced 2026-07-11 17:18:55 +00:00
8ce0e1c520
ctx.input().key_pressed(Key::A) -> ctx.input(|i| i.key_pressed(Key::A))
This example shows that you can use egui in parallel from multiple threads.
cargo run -p hello_world_par