altEngine
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
speaker.h
Go to the documentation of this file.
1 #include "include.h"
2 
3 #ifndef SPEAKER_H
4 #define SPEAKER_H
5 
6 class Speaker
7 {
8 public:
9  Speaker(Entity *entity, Audio &audio);
10  ~Speaker();
11  void gain(float value);
12  void loop_gain(float value);
13  void destroy(Audio &audio);
15 
16  int source;
18  int index;
19 };
20 
21 #endif