mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-19 15:52:53 +00:00
26 lines
691 B
Plaintext
26 lines
691 B
Plaintext
// =========================================
|
|
// StructuredDataDefSet
|
|
// =========================================
|
|
use StructuredDataDefSet;
|
|
set string name;
|
|
set name name;
|
|
set count defs defCount;
|
|
|
|
// StructuredDataDef
|
|
use StructuredDataDef;
|
|
set count enums enumCount;
|
|
set count structs structCount;
|
|
set count indexedArrays indexedArrayCount;
|
|
set count enumedArrays enumedArrayCount;
|
|
|
|
// StructuredDataEnum
|
|
set count StructuredDataEnum::entries entryCount;
|
|
|
|
// StructuredDataEnumEntry
|
|
set string StructuredDataEnumEntry::string;
|
|
|
|
// StructuredDataStruct
|
|
set count StructuredDataStruct::properties propertyCount;
|
|
|
|
// StructuredDataStructProperty
|
|
set string StructuredDataStructProperty::name; |