| 79 | } |
| 80 | |
| 81 | bool BaseStream::ReadVector4(Vector4* value) |
| 82 | { |
| 83 | ReadFloat(&value->x); |
| 84 | ReadFloat(&value->y); |
| 85 | ReadFloat(&value->z); |
| 86 | ReadFloat(&value->w); |
| 87 | |
| 88 | return true; |
| 89 | } |
| 90 | |
| 91 | bool BaseStream::ReadQuaternion(Quaternion* value) |
| 92 | { |
nothing calls this directly
no test coverage detected