feat: add gui/winit

This commit is contained in:
2020-12-06 11:49:06 +08:00
parent 14a473103a
commit 6a6cfae137
4 changed files with 1023 additions and 1 deletions

22
__gui/winit/src/main.rs Normal file
View File

@@ -0,0 +1,22 @@
use winit::{
event::{Event, WindowEvent},
event_loop::{ControlFlow, EventLoop},
window::WindowBuilder,
};
fn main() {
let event_loop = EventLoop::new();
let window = WindowBuilder::new().build(&event_loop).unwrap();
event_loop.run(move |event, _, control_flow| {
*control_flow = ControlFlow::Wait;
match event {
Event::WindowEvent {
event: WindowEvent::CloseRequested,
window_id,
} if window_id == window.id() => *control_flow = ControlFlow::Exit,
_ => (),
}
});
}