1
2
3
4
5
6
7
8
9
10
11
12
13
use bevy::ecs::component::Component;

#[derive(Component)]
pub struct Knob {
    pub index_tag: u32,
    pub value: u32,
}

#[derive(Component)]
pub struct Rack {
    pub root_res: String,
    pub index_tag: u32,
}