ysyx-workbench/npc/include/config.hpp

21 lines
440 B
C++
Raw Normal View History

2024-04-09 09:03:21 +00:00
#ifndef _NPC_CONFIG_H_
#define _NPC_CONFIG_H_
#include <CLI/App.hpp>
#include <CLI/CLI.hpp>
#include <CLI/Validators.hpp>
#include <filesystem>
struct Config {
std::filesystem::path memory_file;
std::string gdbsocket = "gdbstub-npc.sock";
bool do_debug{false};
2024-07-09 12:42:01 +00:00
bool interactive{false};
2024-04-09 09:03:21 +00:00
bool memory_file_binary = {true};
std::filesystem::path wavefile;
void cli_parse(int argc, char **argv);
};
extern Config config;
2024-07-09 12:42:01 +00:00
#endif