11 lines
156 B
C++
11 lines
156 B
C++
#ifndef ENGINE_MOVIE_HH
|
|
#define ENGINE_MOVIE_HH
|
|
|
|
namespace recorder
|
|
{
|
|
void stop();
|
|
void capture(bool overlay = true);
|
|
void cleanup();
|
|
}
|
|
|
|
#endif
|