n64-emu/include/n64_system/config.h
2023-09-22 11:28:38 +09:00

22 lines
383 B
C++

#ifndef CONFIG_H
#define CONFIG_H
#include "utils/log.h"
#include <string>
namespace N64 {
namespace N64System {
struct Config {
std::string rom_filepath{};
std::string log_filepath{};
Utils::LogLevel log_level;
bool test_mode;
};
bool read_config_from_command_line(Config &config, int argc, char *argv[]);
} // namespace N64System
} // namespace N64
#endif