mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 23:05:36 -04:00
52d84413bb
* daalink / z2linkmgr wip * first cleanup of JASGlobalInstance data * fix sInstance stuff part 2 * more d_a_alink_swim work * remove asm
18 lines
492 B
C
18 lines
492 B
C
#ifndef JAUSOUNDTABLE_H
|
|
#define JAUSOUNDTABLE_H
|
|
|
|
#include "JSystem/JAudio2/JAISound.h"
|
|
#include "JSystem/JAudio2/JASGadget.h"
|
|
|
|
struct JAUSoundTable : public JASGlobalInstance<JAUSoundTable> {
|
|
/* 802A7114 */ void init(void const*);
|
|
/* 802A7160 */ void getTypeID(JAISoundID) const;
|
|
/* 802A728C */ void getData(JAISoundID) const;
|
|
};
|
|
|
|
struct JAUSoundNameTable : public JASGlobalInstance<JAUSoundNameTable> {
|
|
/* 802A73D4 */ void init(void const*);
|
|
};
|
|
|
|
#endif /* JAUSOUNDTABLE_H */
|