| 2627 | } |
| 2628 | |
| 2629 | xModelInstance* zNPCCommon::ModelAtomicHide(S32 index, xModelInstance* mdl) |
| 2630 | { |
| 2631 | xModelInstance* minst = mdl ? mdl : this->ModelAtomicFind(index, -1, NULL); |
| 2632 | if (!minst) |
| 2633 | return minst; |
| 2634 | |
| 2635 | minst->Flags &= ~0x1; |
| 2636 | |
| 2637 | return minst; |
| 2638 | } |
| 2639 | |
| 2640 | xModelInstance* zNPCCommon::ModelAtomicShow(S32 index, xModelInstance* mdl) |
| 2641 | { |
no test coverage detected