Restructure asset processor

This commit is contained in:
octorock
2021-11-07 18:38:04 +01:00
parent 473bc5f260
commit e44d0e3fc9
45 changed files with 3832 additions and 2522 deletions
+10
View File
@@ -0,0 +1,10 @@
#include "reader.h"
#include "util.h"
#include <string>
std::string opt_param(const std::string& format, int defaultVal, int value) {
if (value != defaultVal) {
return string_format(format, value);
}
return "";
}