Mercurial > audio-send
view OpenAL32/Include/alListener.h @ 22:616215c81d23
added footnote
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Thu, 03 Nov 2011 15:14:44 -0700 |
parents | f9476ff7637e |
children |
line wrap: on
line source
1 #ifndef _AL_LISTENER_H_2 #define _AL_LISTENER_H_4 #include "AL/al.h"6 #ifdef __cplusplus7 extern "C" {8 #endif10 typedef struct ALlistener_struct11 {12 ALfloat Position[3];13 ALfloat Velocity[3];14 ALfloat Forward[3];15 ALfloat Up[3];16 ALfloat Gain;17 ALfloat MetersPerUnit;18 } ALlistener;20 #ifdef __cplusplus21 }22 #endif24 #endif