Files
HansTheGatherer/audio.hpp
2025-05-25 10:13:40 +02:00

11 lines
146 B
C++

#pragma once
#include <SDL3/SDL.h>
#include <cstdint>
struct AudioAsset {
SDL_AudioSpec spec;
uint8_t *buffer;
uint32_t buffer_length;
};