Changeset 552 for abuse/trunk/src/sdlport/sound.h
- Timestamp:
- Apr 29, 2011, 1:15:09 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
abuse/trunk/src/sdlport/sound.h
r551 r552 26 26 { 27 27 public: 28 sound_effect(char *filename); 29 void play(int volume = 127, int pitch = 128, int panpot = 128); 28 sound_effect(char const *filename); 30 29 ~sound_effect(); 31 30 31 void play(int volume = 127, int pitch = 128, int panpot = 128); 32 32 33 private: 33 void *data; 34 Mix_Chunk* chunk; 35 int size; 34 Mix_Chunk* m_chunk; 36 35 }; 37 36
Note: See TracChangeset
for help on using the changeset viewer.