bevy_child_window 0.2.1

Allows you to create an embed child window in Bevy
Documentation
1
2
3
4
5
6
7
8
9
10
use bevy::app::Plugin;

/// For unsupported platforms, this plugin is used.
///
/// This is only to avoid compile errors and doesn't actually do anything.
pub struct ChildWindowPlugin;

impl Plugin for ChildWindowPlugin {
    fn build(&self, _app: &mut bevy::app::App) {}
}