XML structured much better

This commit is contained in:
2023-05-18 21:51:22 -07:00
parent 26252d3b64
commit 7a6731cc9e
12 changed files with 26 additions and 306 deletions

View File

@ -18,7 +18,7 @@ std::map<std::string, std::string> SceneTool::getOptionalFlags() {
int32_t SceneTool::start() {
File input = File(flags["input"]);
if(!input.exists()) {
std::cout << "Input file does not exist!" << std::endl;
std::cout << "Input file " + input.filename + " does not exist!" << std::endl;
return 1;
}