Files
SDLRousku/SoundData.h
2024-12-05 20:49:37 +02:00

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