You've already forked PrimeRemasterStructs
mirror of
https://github.com/PrimeDecomp/PrimeRemasterStructs.git
synced 2026-03-31 14:23:23 -07:00
26 lines
423 B
Plaintext
26 lines
423 B
Plaintext
#ifndef _CAUDIOSAMPLEBANK
|
|
#define _CAUDIOSAMPLEBANK
|
|
|
|
#include "Common.bt"
|
|
|
|
typedef struct {
|
|
GUID guid;
|
|
uchar unk1;
|
|
uchar unk2;
|
|
uchar unk3;
|
|
uchar unk4;
|
|
uchar unk5;
|
|
uchar unk6;
|
|
uint unk7;
|
|
} CAudioSampleBankEntry;
|
|
|
|
typedef struct {
|
|
uint unk1;
|
|
uint unk2;
|
|
uchar unk3;
|
|
uint entryCount;
|
|
CAudioSampleBankEntry entries[entryCount];
|
|
} CAudioSampleBank;
|
|
|
|
#endif// _CAUDIOSAMPLEBANK
|