1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![cfg_attr(doctest, doc = "````no_test")]
#![doc = include_str!("../README.md")]

mod systems;
mod utils;

pub mod bundles;
pub mod components;
pub mod plugins;
pub mod prelude;

pub use crate::{
    bundles::PersistentWindowBundle,
    components::WindowState,
    plugins::PersistentWindowsPlugin,
};