| 52 | return !otherObj || v != *(bool*)otherObj; |
| 53 | } |
| 54 | inline void Serialize(ISerializable::SerializeStream& stream, const bool& v, const void* otherObj) |
| 55 | { |
| 56 | stream.Bool(v); |
| 57 | } |
| 58 | inline void Deserialize(ISerializable::DeserializeStream& stream, bool& v, ISerializeModifier* modifier) |
| 59 | { |
| 60 | v = stream.GetBool(); |