1 2 3 4 5 6 7 8 9 10
use bevy::prelude::*; pub mod confetti; pub mod letter; pub mod prompt; pub mod statistics; pub(super) fn plugin(app: &mut App) { app.add_plugins((letter::plugin, prompt::plugin, confetti::plugin)); }