17 lines
248 B
C++
Executable file
17 lines
248 B
C++
Executable file
#pragma once
|
|
|
|
#include <fstream>
|
|
#include <string>
|
|
#include <vector>
|
|
#include <string_view>
|
|
|
|
#include "file.hpp"
|
|
|
|
/*
|
|
* Audio API
|
|
*/
|
|
namespace audio {
|
|
void initialize();
|
|
|
|
void play_file(const file::Path path, const float gain = 1.0f);
|
|
}
|