| 207 | } |
| 208 | |
| 209 | void UpdateCtx_Clear |
| 210 | ( |
| 211 | EntityUpdateEvalCtx *ctx |
| 212 | ) { |
| 213 | uint count = array_len(ctx->properties); |
| 214 | for(uint i = 0; i < count; i ++) AR_EXP_Free(ctx->properties[i].exp); |
| 215 | array_clear(ctx->properties); |
| 216 | } |
| 217 | |
| 218 | void UpdateCtx_Free |
| 219 | ( |
no test coverage detected