| 189 | } |
| 190 | |
| 191 | S32 NPCWidget::IsVisible() |
| 192 | { |
| 193 | if (base_widge == NULL) |
| 194 | { |
| 195 | return 0; |
| 196 | } |
| 197 | else if (base_widge->baseType != 0x21) |
| 198 | { |
| 199 | return 0; |
| 200 | } |
| 201 | else |
| 202 | { |
| 203 | return xEntIsVisible((xEnt*)base_widge); |
| 204 | } |
| 205 | } |
| 206 | |
| 207 | S32 NPCWidget::Lock(const zNPCCommon* npc) |
| 208 | { |
no test coverage detected