1
0
mirror of https://github.com/Halofreak1990/XFXFramework synced 2024-12-26 13:49:34 +01:00
XFXFramework/include/Audio/AudioEmitter.h
Tom Lint 81af66d336 Code Audit
Replaced all copyright symbols with (c) to improve cross-platform
reading
Added classes to XFX::Audio namespace
Added and updated classes in XFX::Graphics namespace
Updated event function signature
Replaced const char* ToString() with const String& ToString()
2013-06-02 14:32:43 +02:00

34 lines
672 B
C++

/********************************************************
* AudioEmitter.h *
* *
* XFX::Audio::AudioEmitter definition file *
* Copyright (c) XFX Team. All Rights Reserved *
********************************************************/
#ifndef _XFX_AUDIO_AUDIOEMITTER_
#define _XFX_AUDIO_AUDIOEMITTER_
#include <System/Object.h>
#include <Vector3.h>
namespace XFX
{
namespace Audio
{
class AudioEmitter : public Object
{
public:
float DopplerScale;
Vector3 Forward;
Vector3 Position;
Vector3 Up;
Vector3 Velocity;
AudioEmitter() { }
inline int GetType() const { }
};
}
}
#endif //XFX_AUDIO_AUDIOEMITTER_H