physis/savedata/mod.rs
1// SPDX-FileCopyrightText: 2025 Joshua Goins <josh@redstrate.com>
2// SPDX-License-Identifier: GPL-3.0-or-later
3
4/// Reading and writing character data files (FFXIV_CHARA_XX.DAT) which are used in the character creator to save presets.
5pub mod chardat;
6
7/// Reading and writing the content of gear sets (GEARSET.DAT) which are used to store a character's gear sets.
8pub mod gearsets;
9
10/// Reading and writing chat logs (LOG).
11pub mod log;
12
13/// Reading the binary .dat files in the user folder (e.g. GEARSET.dat)
14pub mod dat;