ironworks 0.4.1

Modular FFXIV data toolkit written in rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
/// Mapper to fetch file paths for excel lookups.
pub trait Mapper: Send + Sync {
	/// Fetch the path to the excel list file.
	fn exl(&self) -> String;

	/// Fetch the path to a sheet header file.
	fn exh(&self, sheet: &str) -> String;

	/// Fetch the path to a sheet page file.
	fn exd(&self, sheet: &str, start_id: u32, language_id: u8) -> String;
}