Archived
1
Fork 0
This repository has been archived on 2025-04-12. You can view files and clone it, but cannot push or open issues or pull requests.
prism/engine/audio/include/audio.hpp

13 lines
182 B
C++
Raw Normal View History

2020-08-11 12:07:21 -04:00
#pragma once
2020-09-21 09:37:52 -04:00
#include "path.hpp"
2020-08-11 12:07:21 -04:00
/*
2022-08-15 10:55:59 -04:00
* Audio API
*/
2020-08-11 12:07:21 -04:00
namespace audio {
void initialize();
2022-08-15 10:55:59 -04:00
2021-10-14 08:51:58 -04:00
void play_file(const prism::path& path, float gain = 1.0f);
2022-08-15 10:55:59 -04:00
} // namespace audio