schlechter Anfang

This commit is contained in:
Cedric
2025-10-04 01:46:19 +02:00
parent a79212b525
commit 3693e47357
9 changed files with 95796 additions and 4 deletions

11
include/playaudio.hpp Normal file
View File

@@ -0,0 +1,11 @@
#include <string>
#include "miniaudio.h"
class audio
{
private:
void data_callback(ma_device *pDevice, void *pOutput, const void *pInput, ma_uint32 frameCount);
public:
audio(std::string eingabe);
};