mirror of
https://github.com/Zenithsiz/dcb.git
synced 2026-02-09 03:40:23 +00:00
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.
14 lines
406 B
Rust
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;
|