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
//! Wrappers for remote types

mod entity;
mod map;
mod value;

pub use self::{
    entity::DynamicEntity,
    map::{
        EntityMap,
        ReflectMap,
    },
    value::DynamicValue,
};