mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-13 08:18:21 -05:00
Parse StructuredDataDef structs
This commit is contained in:
@ -1,4 +1,5 @@
|
||||
#pragma once
|
||||
#include <map>
|
||||
#include <memory>
|
||||
#include <vector>
|
||||
|
||||
@ -15,6 +16,10 @@ namespace sdd
|
||||
CommonStructuredDataDefEnum* m_current_enum;
|
||||
CommonStructuredDataDefStruct* m_current_struct;
|
||||
|
||||
std::map<std::string, CommonStructuredDataDefType> m_def_types_by_name;
|
||||
std::map<CommonStructuredDataDefIndexedArray, size_t> m_def_indexed_arrays;
|
||||
std::map<CommonStructuredDataDefEnumedArray, size_t> m_def_enumed_arrays;
|
||||
|
||||
StructuredDataDefParserState();
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user