We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7cdcf69 commit 811e15bCopy full SHA for 811e15b
2 files changed
crates/lambda-platform/src/winit/mod.rs
@@ -54,11 +54,6 @@ pub struct Loop<E: 'static + std::fmt::Debug> {
54
event_loop: EventLoop<E>,
55
}
56
57
-pub fn create_event_loop<Events: 'static + std::fmt::Debug>() -> Loop<Events> {
58
- let event_loop = EventLoop::<Events>::with_user_event();
59
- return Loop { event_loop };
60
-}
61
-
62
/// Structure that contains properties needed for building a window.
63
pub struct WindowProperties {
64
pub name: String,
lambda/src/runtimes/mod.rs
@@ -1,7 +1,6 @@
1
use std::time::Instant;
2
3
use lambda_platform::winit::{
4
- create_event_loop,
5
winit_exports::{
6
ControlFlow,
7
Event as WinitEvent,
0 commit comments