First pass at prefab tool (done)

This commit is contained in:
2023-03-24 17:05:59 -07:00
parent 0c8f825b1a
commit fbad23b9f6
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 {