mirror of
https://github.com/redstrate/Physis.git
synced 2025-04-20 03:37:47 +00:00
34 lines
551 B
Rust
34 lines
551 B
Rust
|
extern crate core;
|
||
|
|
||
|
use std::fs;
|
||
|
use std::path::PathBuf;
|
||
|
use crate::bootdata::BootData;
|
||
|
use crate::gamedata::GameData;
|
||
|
|
||
|
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;
|
||
|
mod blowfish_constants;
|