18 lines
248 B
C++
18 lines
248 B
C++
![]() |
#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);
|
||
|
}
|