forked from alterware/iw6-mod
10 lines
269 B
C++
10 lines
269 B
C++
#pragma once
|
|
|
|
namespace demo_playback
|
|
{
|
|
[[nodiscard]] bool playing();
|
|
[[nodiscard]] bool startplay(std::string_view file_name, bool repeat = true);
|
|
[[nodiscard]] bool startplay(std::filesystem::path& file_path, bool repeat = true);
|
|
[[nodiscard]] void stopplay();
|
|
}
|