Initial commit
This commit is contained in:
30
Torque/SDK/engine/audio/audioStreamSourceFactory.h
Normal file
30
Torque/SDK/engine/audio/audioStreamSourceFactory.h
Normal file
@@ -0,0 +1,30 @@
|
||||
//--------------------------------------------
|
||||
// audioStreamSource.h
|
||||
// header for streaming audio source
|
||||
//
|
||||
// Kurtis Seebaldt
|
||||
//--------------------------------------------
|
||||
|
||||
#ifndef _AUDIOSTREAMSOURCEFACTORY_H_
|
||||
#define _AUDIOSTREAMSOURCEFACTORY_H_
|
||||
|
||||
#ifndef _PLATFORM_H_
|
||||
#include "platform/platform.h"
|
||||
#endif
|
||||
#ifndef _PLATFORMAUDIO_H_
|
||||
#include "platform/platformAudio.h"
|
||||
#endif
|
||||
#ifndef _PLATFORMAL_H_
|
||||
#include "platform/platformAL.h"
|
||||
#endif
|
||||
#ifndef _AUDIOSTREAMSOURCE_H_
|
||||
#include "audio/audioStreamSource.h"
|
||||
#endif
|
||||
|
||||
class AudioStreamSourceFactory
|
||||
{
|
||||
public:
|
||||
static AudioStreamSource* getNewInstance(const char* filename);
|
||||
};
|
||||
|
||||
#endif // _AUDIOSTREAMSOURCEFACTORY_H_
|
||||
Reference in New Issue
Block a user