//! Bundles.
usecrate::prelude::*;/// Persistent window bundle.
////// Made of `a window` and `a persistent state` for it.
////// Changes made to `window` or `state` components
/// will be synchronized by [PersistentWindowsPlugin].
#[derive(Bundle)]pubstructPersistentWindowBundle{/// Window component.
pubwindow: Window,
/// Persistent window state component.
pubstate:Persistent<WindowState>,
}