mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 15:01:53 -04:00
e915df66c8
* clean up d_a_player * move some of daalink * more daalink / daplayer * setup some daalink members * rest of daalink members setup * remove comment * few more matches * remove asm * more matches * more matches + move e_wb_class * fix some d_save classes Co-authored-by: lepelog <lepelog@users.noreply.github.com>
30 lines
762 B
C
30 lines
762 B
C
#ifndef Z2SOUNDSTARTER_H
|
|
#define Z2SOUNDSTARTER_H
|
|
|
|
#include "JSystem/JAudio2/JAISound.h"
|
|
#include "dolphin/types.h"
|
|
|
|
struct Z2SoundStarter_vtable {
|
|
void* field_0x0;
|
|
void* field_0x4;
|
|
void* dtor;
|
|
void* startSound1;
|
|
void* startSound2;
|
|
};
|
|
|
|
struct Z2SoundStarter {
|
|
// Z2SoundStarter_vtable* vtable;
|
|
|
|
Z2SoundStarter(bool);
|
|
virtual ~Z2SoundStarter();
|
|
|
|
virtual void startSound(JAISoundID, JAISoundHandle*, JGeometry::TVec3<f32> const*);
|
|
virtual void startSound(JAISoundID, JAISoundHandle*, JGeometry::TVec3<f32> const*, u32, float,
|
|
float, float, float, float, u32);
|
|
|
|
void setPortData(JAISoundHandle*, u32, u16, s8);
|
|
void getPortData(JAISoundHandle*, u32, s8);
|
|
};
|
|
|
|
#endif /* Z2SOUNDSTARTER_H */
|