mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-25 15:05:06 -04:00
75e4b2ac20
* Work on J2DMaterialFactory * J3DUClipper OK * Work on JAISoundStarter * JAISoundHandles OK * JAISoundInfo OK * Fix JAISound::isStopping * Work on J2DTextBoxEx * dspproc OK * osdsp OK * osdsp_task OK * Work on dsptask * Import some JASCalc code * JASCallback OK * JASOscillator OK * JASLfo OK
15 lines
410 B
C
15 lines
410 B
C
#ifndef JAISOUNDSTARTER_H
|
|
#define JAISOUNDSTARTER_H
|
|
|
|
#include "JSystem/JAudio2/JAISound.h"
|
|
#include "JSystem/JAudio2/JASGadget.h"
|
|
|
|
struct JAISoundStarter : public JASGlobalInstance<JAISoundStarter> {
|
|
/* 802A2F6C */ JAISoundStarter(bool);
|
|
|
|
virtual ~JAISoundStarter();
|
|
/* 802A2FEC */ bool startLevelSound(JAISoundID, JAISoundHandle*, JGeometry::TVec3<f32> const*);
|
|
};
|
|
|
|
#endif /* JAISOUNDSTARTER_H */
|