MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / SerializedEntryV9

Class SerializedEntryV9

Source/Engine/Content/Storage/FlaxStorage.cpp:122–140  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

120};
121
122struct SerializedEntryV9
123{
124 Guid ID;
125 SerializedTypeNameV9 TypeName;
126 uint32 Address;
127
128 SerializedEntryV9()
129 : ID(Guid::Empty)
130 , Address(0)
131 {
132 }
133
134 SerializedEntryV9(const Guid& id, const String& typeName, uint32 address)
135 : ID(id)
136 , TypeName(typeName)
137 , Address(address)
138 {
139 }
140};
141
142// [Deprecated on 4/17/2020, expires on 4/17/2022]
143struct OldSerializedEntryV7

Callers 1

CreateMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected