| 70 | } |
| 71 | |
| 72 | bool BaseStream::ReadVector3(Vector3* value) |
| 73 | { |
| 74 | ReadFloat(&value->x); |
| 75 | ReadFloat(&value->y); |
| 76 | ReadFloat(&value->z); |
| 77 | |
| 78 | return true; |
| 79 | } |
| 80 | |
| 81 | bool BaseStream::ReadVector4(Vector4* value) |
| 82 | { |
nothing calls this directly
no test coverage detected