#pragma once #include #include namespace options { struct CMDLineOptions { std::string root; bool showConsole; }; SDRPP_EXPORT CMDLineOptions opts; void loadDefaults(); bool parse(int argc, char *argv[]); }