mirror of
https://github.com/rust-windowing/winit.git
synced 2026-06-27 15:13:13 -04:00
23 lines
546 B
Rust
23 lines
546 B
Rust
extern crate winit;
|
|
|
|
fn main() {
|
|
let mut events_loop = winit::EventLoop::new();
|
|
|
|
let _window = winit::WindowBuilder::new()
|
|
.with_title("A fantastic window!")
|
|
.build(&events_loop)
|
|
.unwrap();
|
|
|
|
events_loop.run_forever(|event| {
|
|
println!("{:?}", event);
|
|
|
|
match event {
|
|
winit::Event::WindowEvent {
|
|
event: winit::WindowEvent::CloseRequested,
|
|
..
|
|
} => winit::ControlFlow::Break,
|
|
_ => winit::ControlFlow::Continue,
|
|
}
|
|
});
|
|
}
|