forked from alterware/iw6-mod
9 lines
197 B
C++
9 lines
197 B
C++
#pragma once
|
|
|
|
namespace demo_recording
|
|
{
|
|
[[nodiscard]] bool recording();
|
|
[[nodiscard]] bool startrecord(std::string_view file_name = {}, bool overwrite = {});
|
|
[[nodiscard]] bool stoprecord();
|
|
}
|