OctaCore/src/engine/movie.hh
2020-05-13 00:40:14 +02:00

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