pmd_flow/
lib.rs

1//#![warn(clippy::pedantic)]
2#![allow(clippy::must_use_candidate)]
3#![allow(clippy::module_name_repetitions)]
4#![allow(clippy::cast_lossless)]
5//! This library can read flow file, as used in Pokemon Super Mystery Dungeon.
6//!
7//! While it can read and write the `script_flow_data_us.bin` file used in this game, this library
8//! isn't finished. It doesn't support different flow file used in this game, and there is many
9//! assertion that crash the program rather than returning Error.
10mod flowdata;
11pub use flowdata::{FlowData, FlowDataError, FlowDataValue};
12
13mod tool;
14
15mod output;
16pub use output::FlowDataOutput;