Introduction
Audeal is a addon you can add to any C++ project that makes using Miniaudio a little easier. It's primary use is for games or game engines. Example usage of Audeal:
#include <iostream>
#include "Audeal.h"
int main() {
Sound mySound = Sound("MySound.wav");
mySound.play();
std::cout<<"press enter to exit"<<std::endl;
std::cin.ignore()
sound.destroy();
return 0;
}
Then compile the project.
Example compile: g++ main.cpp -lpthread -lm -ldl -o main