12 lines
165 B
C++
Executable file
12 lines
165 B
C++
Executable file
#pragma once
|
|
|
|
#include "path.hpp"
|
|
|
|
/*
|
|
* Audio API
|
|
*/
|
|
namespace audio {
|
|
void initialize();
|
|
|
|
void play_file(const prism::path& path, float gain = 1.0f);
|
|
}
|