vulkano_ecs/src/core/app/plugin.rs
2025-04-13 16:35:21 +02:00

5 lines
79 B
Rust

use super::app::App;
pub trait Plugin {
fn build(&self, app: &mut App);
}