mirror of
https://github.com/kmc-jp/n64-emu.git
synced 2025-04-02 10:21:43 -04:00
22 lines
383 B
C++
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
|