| 2156 | } |
| 2157 | |
| 2158 | xAnimPlay* xAnimPoolAlloc(xMemPool* pool, void* object, xAnimTable* table, |
| 2159 | xModelInstance* modelInst) |
| 2160 | { |
| 2161 | xAnimPlay* play; |
| 2162 | |
| 2163 | play = (xAnimPlay*)xMemPoolAlloc(pool); |
| 2164 | |
| 2165 | xAnimPlaySetup(play, object, table, modelInst); |
| 2166 | |
| 2167 | return play; |
| 2168 | } |
| 2169 | |
| 2170 | void xAnimPoolFree(xAnimPlay* play) |
| 2171 | { |
no test coverage detected