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
11
12
13
#[cfg(target_os = "macos")]
mod macos;
#[cfg(target_os = "windows")]
mod windows;
#[cfg(not(any(target_os = "macos", target_os = "windows")))]
mod stub;

#[cfg(target_os = "macos")]
pub use macos::*;
#[cfg(not(any(target_os = "macos", target_os = "windows")))]
pub use stub::*;
#[cfg(target_os = "windows")]
pub use windows::*;