| 120 | }; |
| 121 | |
| 122 | struct 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] |
| 143 | struct OldSerializedEntryV7 |