caudio/include/IListener.h
Raynaldo Rivera 9cac8153da
2009-06-21 03:24:30 +00:00

22 lines
480 B
C++

#ifndef ILISTENER_H
#define ILISTENER_H
namespace cAudio
{
class IListener
{
public:
virtual ~IListener() {}
//!Sets the listeners position
virtual void setPosition(ALfloat x,ALfloat y, ALfloat z) = 0;
//!Sets the listeners orientation
virtual void setOrientation(ALfloat x,ALfloat y,ALfloat z,ALfloat upx,ALfloat upy,ALfloat upz) = 0;
protected:
IListener() {}
private:
};
}
#endif //! ILISTENER_H