usebevy_ecs::prelude::*;/// Configuration for the chair plugin
#[derive(Resource)]pubstructChairConfig{/// Assets path to find textures at, recursively loaded from here
pubtextures:&'staticstr}implDefault forChairConfig{fndefault()-> ChairConfig{Self{
textures:"textures"}}}