| 38 | using namespace Gu; |
| 39 | |
| 40 | void physx::readChunk(PxI8& a, PxI8& b, PxI8& c, PxI8& d, PxInputStream& stream) |
| 41 | { |
| 42 | stream.read(&a, sizeof(PxI8)); |
| 43 | stream.read(&b, sizeof(PxI8)); |
| 44 | stream.read(&c, sizeof(PxI8)); |
| 45 | stream.read(&d, sizeof(PxI8)); |
| 46 | } |
| 47 | |
| 48 | /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
| 49 |