godot-binary-serialization 0.2.0

A Godot binary serializer to encode & decode types from & to godot
Documentation
1
2
3
4
5
6
7
8
9
pub mod decoder;
pub mod encoder;
pub mod types;

pub mod prelude {
    pub use crate::decoder;
    pub use crate::encoder;
    pub use crate::types;
}