bevy_cobweb_ui 0.22.2

UI framework for the bevy game engine
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use bevy::prelude::*;

use crate::prelude::*;

//-------------------------------------------------------------------------------------------------------------------

pub(crate) struct ToolsPlugin;

impl Plugin for ToolsPlugin
{
    fn build(&self, app: &mut App)
    {
        app.init_resource::<IterChildren>();
    }
}

//-------------------------------------------------------------------------------------------------------------------