Files
iw6-mod/src/client/component/demo_playback.hpp
T
Caball c3a7f63336 Added demo code.
Includes client and server recording code, and playback code.
2024-12-31 00:45:51 +01:00

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();
}