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
use bevy::prelude::*;

pub mod camera;
pub mod spawning;

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