First pass at prefab tool (done)

This commit is contained in:
2023-03-24 17:05:59 -07:00
parent 8c50c10be0
commit 4ccd1713a2
4 changed files with 101 additions and 27 deletions

View File

@@ -11,10 +11,14 @@
#include <regex>
namespace Dawn {
enum PrefabcComponentParserRulesetType {
STRIN
};
struct PrefabComponentParserRuleset {
std::string name;
std::string include;
std::map<std::string, std::function<std::string(std::string)>> optional;
std::map<std::string, std::string> optional;
};
struct PrefabRegistry {