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