mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
* Fix Replace Animation Hook * SoundTable * Numerous Dat Updates * Added highres and language export commands
23 lines
585 B
C#
23 lines
585 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Text;
|
|
|
|
namespace ACE.DatLoader.Entity
|
|
{
|
|
public class SoundTableData : IUnpackable
|
|
{
|
|
public uint SoundId; // Corresponds to the DatFileType.Wave
|
|
public float Priority;
|
|
public float Probability;
|
|
public float Volume;
|
|
|
|
public void Unpack(BinaryReader reader)
|
|
{
|
|
SoundId = reader.ReadUInt32();
|
|
Priority = reader.ReadSingle();
|
|
Probability = reader.ReadSingle();
|
|
Volume = reader.ReadSingle();
|
|
}
|
|
}
|
|
}
|