| 98 | #endif |
| 99 | |
| 100 | void LocalizationSettings::Deserialize(DeserializeStream& stream, ISerializeModifier* modifier) |
| 101 | { |
| 102 | DESERIALIZE(LocalizedStringTables); |
| 103 | DESERIALIZE(DefaultFallbackLanguage); |
| 104 | } |
| 105 | |
| 106 | LocalizedString::LocalizedString(const LocalizedString& other) |
| 107 | : Id(other.Id) |
nothing calls this directly
no test coverage detected