| 17 | } |
| 18 | |
| 19 | void zMovePointInit(zMovePoint* m, xMovePointAsset* asset) |
| 20 | { |
| 21 | xMovePointInit((xMovePoint*)m, asset); |
| 22 | m->eventFunc = zMovePointEventCB; |
| 23 | if (m->linkCount) |
| 24 | { |
| 25 | m->link = |
| 26 | (xLinkAsset*)(((U32*)asset + sizeof(xMovePointAsset) / 4) + (U32)asset->numPoints); |
| 27 | } |
| 28 | else |
| 29 | { |
| 30 | m->link = NULL; |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | zMovePoint* zMovePoint_GetInst(S32 n) |
| 35 | { |
no test coverage detected