physis 0.5.0

Library for reading and writing FFXIV data.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-FileCopyrightText: 2025 Joshua Goins <josh@redstrate.com>
// SPDX-License-Identifier: GPL-3.0-or-later

/// Reading and writing character data files (FFXIV_CHARA_XX.DAT) which are used in the character creator to save presets.
pub mod chardat;

/// Reading and writing the content of gear sets (GEARSET.DAT) which are used to store a character's gear sets.
pub mod gearsets;

/// Reading and writing chat logs (LOG).
pub mod log;

/// Reading the binary .dat files in the user folder (e.g. GEARSET.dat)
pub mod dat;