mirror of
https://github.com/bevyengine/bevy
synced 2024-12-22 19:13:08 +00:00
9 lines
147 B
Rust
9 lines
147 B
Rust
|
use bevy_derive::EntityArchetype;
|
||
|
use super::Node;
|
||
|
|
||
|
#[derive(EntityArchetype)]
|
||
|
#[module(meta = false)]
|
||
|
pub struct UiEntity {
|
||
|
pub node: Node,
|
||
|
}
|