bevy_codex/components.rs
1use bevy::prelude::*;
2
3#[derive(Component, Clone)]
4pub struct Ui3d;
5
6#[derive(Component, Clone)]
7pub struct Quit;
8
9#[derive(Component)]
10pub struct UiMainRootNode;
11
12#[derive(Component)]
13pub struct UiFooterRootNode;
14
15#[derive(Component, Clone)]
16pub struct MainCam;
17
18#[derive(Component)]
19pub struct SettingsButton;