mirror of
https://github.com/bulletphysics/bullet3.git
synced 2026-08-28 14:08:32 +00:00
17 lines
293 B
C++
17 lines
293 B
C++
#ifndef B3_SOUND_SOURCE_H
|
|
#define B3_SOUND_SOURCE_H
|
|
|
|
class b3SoundSource
|
|
{
|
|
struct b3SoundSourceInternalData* m_data;
|
|
|
|
public:
|
|
|
|
b3SoundSource();
|
|
virtual ~b3SoundSource();
|
|
|
|
virtual bool computeSamples(double *sampleBuffer, int numSamples, double sampleRate);
|
|
};
|
|
|
|
#endif //B3_SOUND_SOURCE_H
|