2022-07-19 19:29:41 -04:00
|
|
|
extern crate core;
|
|
|
|
|
|
|
|
pub mod gamedata;
|
|
|
|
|
|
|
|
/// Reading game data repositories, such as "ffxiv" and "ex1", and so on.
|
|
|
|
pub mod repository;
|
|
|
|
|
|
|
|
pub mod bootdata;
|
|
|
|
|
|
|
|
/// Everything to do with reading SqPack files.
|
|
|
|
pub mod sqpack;
|
|
|
|
|
|
|
|
pub mod index;
|
|
|
|
pub mod dat;
|
|
|
|
mod compression;
|
|
|
|
mod model;
|
|
|
|
pub mod race;
|
|
|
|
|
|
|
|
/// Reading Excel lists (EXL).
|
|
|
|
pub mod exl;
|
|
|
|
pub mod equipment;
|
|
|
|
pub mod common;
|
|
|
|
pub mod patch;
|
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
mod macros;
|
|
|
|
|
|
|
|
pub mod blowfish;
|
2022-07-20 19:07:36 -04:00
|
|
|
mod blowfish_constants;
|
2022-07-21 19:58:58 -04:00
|
|
|
pub mod installer;
|
|
|
|
pub mod exh;
|
|
|
|
pub mod exd;
|