mirror of
https://github.com/zeldaret/tp
synced 2026-06-12 05:27:46 -04:00
9f38190f00
* Match two JASTrack functions * dsptask, JAISoundStarter OK. Other small matches * Work on JAIStream * Work on JAIStreamMgr * Work on JAISeqMgr * Formatting
16 lines
502 B
C
16 lines
502 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();
|
|
virtual bool startSound(JAISoundID, JAISoundHandle*, JGeometry::TVec3<f32> const*) = 0;
|
|
/* 802A2FEC */ bool startLevelSound(JAISoundID, JAISoundHandle*, JGeometry::TVec3<f32> const*);
|
|
};
|
|
|
|
#endif /* JAISOUNDSTARTER_H */
|