bevy_save 2.0.1+4

A framework for saving and loading application state in Bevy.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Checkpoint utilities for [`Snapshot`](crate::prelude::Snapshot)s
//! that can be quickly rolled through.

mod ext;
mod registry;
mod state;

pub use self::{
    ext::{
        AppCheckpointExt,
        WorldCheckpointExt,
    },
    registry::CheckpointRegistry,
    state::Checkpoints,
};