Changeset 3512 in orxonox.OLD for orxonox/branches/soundEngine/src/sound_control.h
- Timestamp:
- Mar 12, 2005, 12:41:09 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/soundEngine/src/sound_control.h
r3509 r3512 2 2 #define SOUNDCONTROL_CLASS_H 3 3 4 #include <SDL/SDL.h>4 #include "stdincl.h" 5 5 #include <SDL/SDL_mixer.h> 6 #include <stdio.h>7 6 8 7 class SoundControl { … … 37 36 static SoundControl* singletonRef; 38 37 38 bool isInit; 39 39 40 public: 41 40 42 Mix_Music* music; 41 43 static SoundControl* sound; 42 44 int bits; 43 45 int volume; 46 44 47 int track_number; 45 int audio_rate, audio_channels, audio_buffers; 48 int audio_rate; 49 int audio_channels; 50 int audio_buffers; 46 51 int done; 47 Uint16 audio_format;48 52 int sfx_channel1; 49 53 int sfx_channel2; 50 54 int finished; 55 56 Uint16 audio_format; 51 57 }; 52 58
Note: See TracChangeset
for help on using the changeset viewer.