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
// SPDX-FileCopyrightText: 2025 Joshua Goins <josh@redstrate.com>
// SPDX-License-Identifier: GPL-3.0-or-later

use binrw::binrw;

#[binrw]
#[derive(Debug, PartialEq)]
#[br(little)]
pub struct SoundInstanceObject {
    pub sound_effect_param: i32,
    pub asset_path_offset: u32,
    // TODO: read separam
}