From 0b86c4a299d384cafca31206eac8c94f1123518d Mon Sep 17 00:00:00 2001
From: Héctor Ramón Jiménez <hector0193@gmail.com>
Date: Thu, 12 Jan 2023 04:35:41 +0100
Subject: Implement `window::frames` subscription

... and use it in the `solar_system` example :tada:
---
 winit/src/window.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'winit/src/window.rs')

diff --git a/winit/src/window.rs b/winit/src/window.rs
index 89db3262..0b9e4c46 100644
--- a/winit/src/window.rs
+++ b/winit/src/window.rs
@@ -2,7 +2,7 @@
 use crate::command::{self, Command};
 use iced_native::window;
 
-pub use window::{Event, Mode, UserAttention};
+pub use window::{frames, Event, Mode, UserAttention};
 
 /// Closes the current window and exits the application.
 pub fn close<Message>() -> Command<Message> {
-- 
cgit