bevy_kot 0.11.0

Koe's Bevy toolkit
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//documentation
#![doc = include_str!("../README.md")]
#![allow(unused_imports)]
use crate as bevy_kot;

//API exports
pub mod prelude
{
    pub use bevy_kot_ecs::*;
    pub use bevy_kot_misc::*;
    pub use bevy_kot_ui::*;
    pub use bevy_kot_utils::*;

    #[cfg(feature = "builtin_ui")]
    pub use bevy_kot_ui::builtin::*;
}