mirror of
https://github.com/decaf-emu/decaf-emu.git
synced 2025-04-02 10:42:13 -04:00
11 lines
168 B
C++
11 lines
168 B
C++
#pragma once
|
|
#include <string>
|
|
|
|
namespace config
|
|
{
|
|
|
|
extern bool dump_drc_frames;
|
|
extern bool dump_tv_frames;
|
|
extern std::string dump_frames_dir;
|
|
|
|
} // namespace config
|