mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 15:01:53 -04:00
7fd7d0c1f3
* d_a_obj_carry work, SETUP_ACTOR macro * rm headers, add script * progress * macro rename, consistent spacing
18 lines
349 B
C++
18 lines
349 B
C++
#include "JSystem/JAudio2/JAISoundChild.h"
|
|
#include "JSystem/JAudio2/JASTrack.h"
|
|
#include "dolphin/types.h"
|
|
|
|
void JAISoundChild::init() {
|
|
mMove.init();
|
|
mParams.init();
|
|
}
|
|
|
|
void JAISoundChild::mixOut(JASTrack* pTrack) {
|
|
mParams = mMove.mParams;
|
|
pTrack->assignExtBuffer(0, &mParams);
|
|
}
|
|
|
|
void JAISoundChild::calc() {
|
|
mMove.calc();
|
|
}
|