| 7 | #include "Engine/Level/Scene/Scene.h" |
| 8 | |
| 9 | void BrushSurface::Serialize(SerializeStream& stream, const void* otherObj) |
| 10 | { |
| 11 | SERIALIZE_GET_OTHER_OBJ(BrushSurface); |
| 12 | |
| 13 | SERIALIZE(Material); |
| 14 | SERIALIZE_MEMBER(Offset, TexCoordOffset); |
| 15 | SERIALIZE_MEMBER(Scale, TexCoordScale); |
| 16 | SERIALIZE_MEMBER(Rotation, TexCoordRotation); |
| 17 | SERIALIZE_MEMBER(ScaleInLightmap, ScaleInLightmap); |
| 18 | } |
| 19 | |
| 20 | void BrushSurface::Deserialize(DeserializeStream& stream, ISerializeModifier* modifier) |
| 21 | { |
nothing calls this directly
no test coverage detected