1 2 3 4 5 6 7 8 9 10 11 12
//! check [profile.txt](https://github.com/poly000/cavestory-save-lib/blob/master/profile.txt) for value validation.
#![feature(pointer_byte_offsets)]
/// Custom types to ensure data be valid
pub mod items;
mod profile;
mod game_profile;
pub use profile::Profile;
pub use game_profile::GameProfile;