mirror of
https://github.com/Halofreak1990/XFXFramework
synced 2024-12-26 13:49:34 +01:00
Added implicit conversion to base types to all primary types (UInt32 et al) Added implicit conversion from System::String to const char*
34 lines
660 B
C++
34 lines
660 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();
|
|
|
|
int GetType() const;
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif //XFX_AUDIO_AUDIOEMITTER_H
|