1
Fork 0
mirror of https://github.com/redstrate/Physis.git synced 2025-04-26 14:17:45 +00:00

Fix some module descriptions missing from docs

This commit is contained in:
Joshua Goins 2022-09-15 17:00:27 -04:00
parent 21b467d5e9
commit 1923b626a9

View file

@ -17,6 +17,8 @@ pub mod index;
mod compression; mod compression;
mod dat; mod dat;
// Reading model (MDL) files.
pub mod model; pub mod model;
/// All of the races in Eorzea in a nice enum package. /// All of the races in Eorzea in a nice enum package.
@ -51,17 +53,17 @@ pub mod exh;
/// Reading Excel data files (EXD). /// Reading Excel data files (EXD).
pub mod exd; pub mod exd;
// Reading Havok XML sidecar files. /// Reading Havok XML sidecar files.
pub mod skeleton; pub mod skeleton;
// Reading file into files (FIIN). /// Reading file into files (FIIN).
pub mod fiin; pub mod fiin;
// Reading and writing chat logs (LOG). /// Reading and writing chat logs (LOG).
pub mod log; pub mod log;
// Reading textures (TEX). /// Reading textures (TEX).
pub mod tex; pub mod tex;
// Reading material files (MTRL) /// Reading material files (MTRL)
pub mod mtrl; pub mod mtrl;