mirror of
https://github.com/zeldaret/tp
synced 2026-05-30 17:06:11 -04:00
a6e76c0841
* some wii OS fixes * remove old dol2asm comments * remove dol2asm.h * remove function address comments * normalize ATTRIBUTE_ALIGN usage * DECL_WEAK macro * fix gcc attribute weak macro * wrap more mwcc specific things in ifdefs * fixes * fix revo sdk version flags * fixes
25 lines
475 B
C
25 lines
475 B
C
#ifndef JAISOUNDCHILD_H
|
|
#define JAISOUNDCHILD_H
|
|
|
|
#include "JSystem/JAudio2/JAISoundParams.h"
|
|
#include "JSystem/JAudio2/JASHeapCtrl.h"
|
|
|
|
struct JASTrack;
|
|
|
|
/**
|
|
* @ingroup jsystem-jaudio
|
|
*
|
|
*/
|
|
struct JAISoundChild : JASPoolAllocObject<JAISoundChild> {
|
|
void init();
|
|
void mixOut(JASTrack*);
|
|
void calc();
|
|
|
|
JAISoundChild() { init(); }
|
|
|
|
/* 0x00 */ JAISoundParamsMove mMove;
|
|
/* 0x50 */ JASSoundParams mParams;
|
|
}; // Size: 0x64
|
|
|
|
#endif /* JAISOUNDCHILD_H */
|