Files
dcb/src/io.rs
Filipe Rodrigues 63d312e845 Added various rustfmt configurations.
Revised documentation of the library and lint opt-out reasons.
Moved some module documentation to it's own file due to overflowing the line limit.
Fixed several spelling errors.
2020-05-13 03:03:46 +01:00

14 lines
406 B
Rust

//! Input / Output
//!
//! The Io module takes care of interacting with the game file itself, such
//! as ensuring that only the data sections in the game file are written to.
//! As well as making conversions between coordinates in data to real file
//! coordinates. (For more details, visit the [`address`] module)
// Modules
pub mod address;
pub mod game_file;
// Exports
pub use game_file::GameFile;