bevy_save 2.0.1+4

A framework for saving and loading application state in Bevy.
Documentation
//! Capturing and applying [`Snapshot`]s of application state.

mod applier;
mod builder;
mod snapshot;

pub use self::{
    applier::{
        Applier,
        ApplierRef,
        BoxedHook,
        Hook,
    },
    builder::{
        Builder,
        BuilderRef,
    },
    snapshot::Snapshot,
};