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 draw;
pub mod layout;
pub mod utilities;
pub mod widgets;

pub(super) fn plugin(app: &mut App) {
    app.add_plugins((draw::plugin, widgets::plugin));
}