1
Fork 0
mirror of https://github.com/redstrate/Physis.git synced 2025-04-20 03:37:47 +00:00
physis/src/lib.rs

34 lines
551 B
Rust
Raw Normal View History

2022-07-19 19:29:41 -04:00
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;