chainmailer 0.2.1

If You Do Not Send This Letter To Ten Recipients You Will Regret It
Documentation
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));
}