16 lines
218 B
C++
16 lines
218 B
C++
#ifndef SOUND_DATA_H
|
|
#define SOUND_DATA_H
|
|
|
|
#include <SDL3/SDL.h>
|
|
|
|
class SoundData {
|
|
public:
|
|
bool is_played;
|
|
bool loop;
|
|
SDL_AudioSpec spec;
|
|
Uint8 *buf;
|
|
Uint32 len;
|
|
};
|
|
|
|
#endif
|