| 447 | } |
| 448 | |
| 449 | void zEntSimpleObj_Render(xEnt* ent) |
| 450 | { |
| 451 | if (ent->model == NULL || xEntIsVisible(ent) == FALSE) |
| 452 | { |
| 453 | return; |
| 454 | } |
| 455 | |
| 456 | xModelRender(ent->model); |
| 457 | } |
| 458 | |
| 459 | void zEntSimpleObj_Init(zEntSimpleObj* ent, xEntAsset* asset, bool arg2) |
| 460 | { |
no test coverage detected