1
Fork 0
mirror of https://github.com/redstrate/Physis.git synced 2025-05-05 18:27:46 +00:00

Move log to save data module

This commit is contained in:
Joshua Goins 2025-04-28 17:09:25 -04:00
parent da8bcf13c1
commit 1e28c05f3a
3 changed files with 3 additions and 3 deletions

View file

@ -58,9 +58,6 @@ pub mod skeleton;
/// Reading file info files (FIIN). /// Reading file info files (FIIN).
pub mod fiin; pub mod fiin;
/// Reading and writing chat logs (LOG).
pub mod log;
/// Reading textures (TEX). /// Reading textures (TEX).
pub mod tex; pub mod tex;

View file

@ -6,3 +6,6 @@ pub mod chardat;
/// Reading and writing the content of gear sets (GEARSET.DAT) which are used to store a character's gear sets. /// Reading and writing the content of gear sets (GEARSET.DAT) which are used to store a character's gear sets.
pub mod gearsets; pub mod gearsets;
/// Reading and writing chat logs (LOG).
pub mod log;