mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-08-11 02:53:16 -04:00
6f96e66518
* some JAudio work * audio cleanup checkpoint * checkpoint more audio cleanup * fix symbols * more z2 cleanup * fix regression * fix build * some fixes
20 lines
593 B
C
20 lines
593 B
C
#ifndef JAISOUNDSTARTER_H
|
|
#define JAISOUNDSTARTER_H
|
|
|
|
#include "JSystem/JAudio2/JAISound.h"
|
|
#include "JSystem/JAudio2/JASGadget.h"
|
|
|
|
/**
|
|
* @ingroup jsystem-jaudio
|
|
*
|
|
*/
|
|
struct JAISoundStarter : public JASGlobalInstance<JAISoundStarter> {
|
|
/* 802A2F6C */ JAISoundStarter(bool setInstance);
|
|
|
|
virtual ~JAISoundStarter();
|
|
virtual bool startSound(JAISoundID id, JAISoundHandle* handlePtr, const JGeometry::TVec3<f32>* posPtr) = 0;
|
|
/* 802A2FEC */ bool startLevelSound(JAISoundID id, JAISoundHandle* handlePtr, const JGeometry::TVec3<f32>* posPtr);
|
|
};
|
|
|
|
#endif /* JAISOUNDSTARTER_H */
|