#ifndef SOUND_DATA_H #define SOUND_DATA_H #include class SoundData { public: bool is_played; bool loop; SDL_AudioSpec spec; Uint8 *buf; Uint32 len; }; #endif